/* ─── Reset & Variables ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:        #5BBFDA;
  --sky-light:  #C5ECFC;
  --ocean:      #0077A8;
  --ocean-mid:  #1A96C0;
  --teal:       #00B8D4;
  --sand:       #FEF3DC;
  --sand-mid:   #F5D98A;
  --sand-warm:  #EDBA45;
  --coral:      #D93025;
  --coral-dark: #B02418;
  --navy:       #0A2342;
  --white:      #FFFFFF;
}

/* ─── Scroll Progress Bar ───────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--sand-warm) 50%, var(--coral) 100%);
  background-size: 200% 100%;
  z-index: 201;
  pointer-events: none;
  transition: width 0.08s linear;
  animation: progress-shimmer 2.8s linear infinite;
}

@keyframes progress-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--sand);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── Visually Hidden (SEO / a11y) ─────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Skip Link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Focus Indicators ──────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(254, 248, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 119, 168, 0.15);
  box-shadow: 0 2px 12px rgba(0, 40, 80, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-logo-fallback {
  display: none;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img.broken + .nav-logo-fallback { display: flex; }

nav.scrolled {
  background: rgba(254, 248, 230, 0.98);
  box-shadow: 0 4px 24px rgba(0, 60, 100, 0.13);
  border-bottom-color: rgba(0, 119, 168, 0.28);
}

/* ── Nav Countdown ──────────────────────────────────────── */
.nav-countdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  pointer-events: none;
}

.nav-cd-title {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  white-space: nowrap;
}

.nav-cd-grid {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image:
    radial-gradient(ellipse at 25% 25%, rgba(255, 252, 235, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(180, 130, 50, 0.18) 0%, transparent 55%),
    repeating-linear-gradient(
      92deg,
      transparent 0px, transparent 5px,
      rgba(160, 110, 30, 0.04) 5px, rgba(160, 110, 30, 0.04) 6px
    ),
    linear-gradient(160deg, #f6e8c0 0%, #e9d49a 45%, #f2dfa8 70%, #e0c882 100%);
  border: 1px solid #b8924a;
  border-radius: 4px;
  padding: 0.12rem 0.5rem;
  min-width: 38px;
  position: relative;
  box-shadow:
    inset 0 1px 2px rgba(255, 245, 200, 0.9),
    inset 0 -1px 2px rgba(120, 75, 10, 0.2),
    0 2px 5px rgba(100, 60, 10, 0.18);
}

.nav-cd-num {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: #3a2008;
  text-shadow: 0 1px 0 rgba(255, 230, 150, 0.6);
}

.nav-cd-lbl {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(80, 45, 5, 0.6);
  line-height: 1;
}

.nav-cd-sep {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 0.65rem;
  opacity: 0.5;
}

.nav-cd-date {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: 0.03em;
  opacity: 0.75;
  white-space: nowrap;
}

@media (max-width: 580px) {
  .nav-cd-item  { min-width: 32px; padding: 0.1rem 0.35rem; }
  .nav-cd-num   { font-size: 0.9rem; }
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #c8edfb 0%,
    #89d0f0 35%,
    #5cb8e0 60%,
    #3a9ecf 100%);
  z-index: 0;
}

/* ── Birds ──────────────────────────────────────────────── */
.birds {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.bird {
  position: absolute;
  left: 0;
  color: rgba(10, 35, 66, 0.5);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bird svg {
  width: 36px;
  height: 36px;
  display: block;
}

/* gentle arc peaking mid-flight */
@keyframes bird-path-1 {
  0%   { transform: translateX(-60px) scale(var(--bs,1)) translateY(0px);   opacity: 0; }
  5%   { opacity: 1; }
  25%  { transform: translateX(25vw)  scale(var(--bs,1)) translateY(-28px); }
  50%  { transform: translateX(50vw)  scale(var(--bs,1)) translateY(-48px); }
  75%  { transform: translateX(75vw)  scale(var(--bs,1)) translateY(-22px); }
  95%  { opacity: 1; }
  100% { transform: translateX(115vw) scale(var(--bs,1)) translateY(-8px);  opacity: 0; }
}

/* dips down then swoops up high */
@keyframes bird-path-2 {
  0%   { transform: translateX(-60px) scale(var(--bs,1)) translateY(0px);   opacity: 0; }
  5%   { opacity: 1; }
  30%  { transform: translateX(30vw)  scale(var(--bs,1)) translateY(32px);  }
  58%  { transform: translateX(58vw)  scale(var(--bs,1)) translateY(-44px); }
  80%  { transform: translateX(80vw)  scale(var(--bs,1)) translateY(-18px); }
  95%  { opacity: 1; }
  100% { transform: translateX(115vw) scale(var(--bs,1)) translateY(-6px);  opacity: 0; }
}

/* gradual climb with a late dive */
@keyframes bird-path-3 {
  0%   { transform: translateX(-60px) scale(var(--bs,1)) translateY(10px);  opacity: 0; }
  5%   { opacity: 1; }
  20%  { transform: translateX(20vw)  scale(var(--bs,1)) translateY(-10px); }
  50%  { transform: translateX(50vw)  scale(var(--bs,1)) translateY(-52px); }
  70%  { transform: translateX(70vw)  scale(var(--bs,1)) translateY(-36px); }
  88%  { transform: translateX(88vw)  scale(var(--bs,1)) translateY(18px);  }
  95%  { opacity: 1; }
  100% { transform: translateX(115vw) scale(var(--bs,1)) translateY(22px);  opacity: 0; }
}

/* multiple bouncy waves */
@keyframes bird-path-4 {
  0%   { transform: translateX(-60px) scale(var(--bs,1)) translateY(0px);   opacity: 0; }
  5%   { opacity: 1; }
  20%  { transform: translateX(20vw)  scale(var(--bs,1)) translateY(-34px); }
  35%  { transform: translateX(35vw)  scale(var(--bs,1)) translateY(12px);  }
  52%  { transform: translateX(52vw)  scale(var(--bs,1)) translateY(-42px); }
  68%  { transform: translateX(68vw)  scale(var(--bs,1)) translateY(8px);   }
  82%  { transform: translateX(82vw)  scale(var(--bs,1)) translateY(-26px); }
  95%  { opacity: 1; }
  100% { transform: translateX(115vw) scale(var(--bs,1)) translateY(-18px); opacity: 0; }
}

/* lazy drift — starts high, drifts low */
@keyframes bird-path-5 {
  0%   { transform: translateX(-60px) scale(var(--bs,1)) translateY(-30px); opacity: 0; }
  5%   { opacity: 1; }
  35%  { transform: translateX(35vw)  scale(var(--bs,1)) translateY(-50px); }
  62%  { transform: translateX(62vw)  scale(var(--bs,1)) translateY(-14px); }
  82%  { transform: translateX(82vw)  scale(var(--bs,1)) translateY(24px);  }
  95%  { opacity: 1; }
  100% { transform: translateX(115vw) scale(var(--bs,1)) translateY(32px);  opacity: 0; }
}

/* ── Sun ────────────────────────────────────────────────── */
.hero-sun {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    #fffbe0 0%, #ffe566 35%, #ffb020 65%, transparent 78%);
  box-shadow:
    0 0 70px 35px rgba(255, 200, 60, 0.5),
    0 0 160px 80px rgba(255, 140, 0, 0.22),
    0 0 300px 150px rgba(255, 100, 0, 0.08);
  z-index: 2;
  animation: sun-pulse 5s ease-in-out infinite alternate;
}

@keyframes sun-pulse {
  0%   { box-shadow: 0 0 70px 35px rgba(255,200,60,0.50), 0 0 160px 80px rgba(255,140,0,0.22); }
  100% { box-shadow: 0 0 90px 45px rgba(255,200,60,0.62), 0 0 200px 100px rgba(255,140,0,0.30); }
}

/* ── Pirate Ship ────────────────────────────────────────── */
.hero-ship {
  position: absolute;
  bottom: 52px;
  left: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  animation: ship-sail 55s linear infinite;
}

.hero-ship-img {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
  opacity: 0.92;
  transform-origin: center bottom;
  will-change: transform;
  animation: ship-rock 4s ease-in-out infinite;
}

@keyframes ship-sail {
  0%   { transform: translateX(-260px); }
  100% { transform: translateX(110vw); }
}

@keyframes ship-rock {
  0%   { transform: translateY(0px)   rotate(0deg); }
  20%  { transform: translateY(-9px)  rotate(1.8deg); }
  50%  { transform: translateY(-3px)  rotate(-1deg); }
  70%  { transform: translateY(-10px) rotate(2deg); }
  85%  { transform: translateY(-2px)  rotate(-0.8deg); }
  100% { transform: translateY(0px)   rotate(0deg); }
}

/* ── Wave transition ────────────────────────────────────── */
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  border-radius: 50% 50% 0 0;
  will-change: transform;
  animation: wave-roll linear infinite;
}

.hw-1 { background: rgba(254,243,220,0.4); height: 90px; animation-duration: 8s; }
.hw-2 { background: rgba(254,243,220,0.5); height: 70px; bottom: 8px; animation-duration: 11s; animation-direction: reverse; }
.hw-3 { background: var(--sand);           height: 55px; animation-duration: 14s; }

@keyframes wave-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero content ───────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.6rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--sand-warm);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-logo-img {
  width: clamp(220px, 50vw, 420px);
  height: auto;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
  display: block;
}

.hero-logo-fallback { display: none; }

.hero-logo-fallback h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 60, 100, 0.3);
  margin-bottom: 0.6rem;
}

.hero-logo-fallback h1 span {
  background: linear-gradient(135deg, #ffe566, #ffb020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 50, 90, 0.35);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-tagline span {
  background: linear-gradient(135deg, #ffe566, #ffb020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(0, 40, 80, 0.55));
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 50, 90, 0.25);
}


.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.95rem 2.4rem;
  border-radius: 7px;
  border: 2.5px solid #B8820A;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
  background-image:
    radial-gradient(circle 4.5px at 16px 13px,                            #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    radial-gradient(circle 4.5px at calc(100% - 16px) 13px,               #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    radial-gradient(circle 4.5px at 16px calc(100% - 13px),               #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    radial-gradient(circle 4.5px at calc(100% - 16px) calc(100% - 13px),  #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    repeating-linear-gradient(89deg, transparent 0, transparent 3px, rgba(0,0,0,0.045) 3px, rgba(0,0,0,0.045) 4px),
    linear-gradient(170deg, #D8914A 0%, #AA6422 38%, #C47830 62%, #9E5C18 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 210, 100, 0.4),
    inset 0 -2px 5px rgba(50, 15, 0, 0.45),
    0 6px 22px rgba(0, 0, 0, 0.38),
    0 2px 0 rgba(184, 130, 10, 0.7);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
  box-shadow:
    inset 0 2px 3px rgba(255, 210, 100, 0.4),
    inset 0 -2px 5px rgba(50, 15, 0, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(184, 130, 10, 0.7);
}

.hero-cta:active { transform: translateY(1px) scale(0.99); filter: brightness(0.95); }

/* ── Hero entrance animations ───────────────────────────── */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow       { animation: hero-enter 0.7s ease both 0.20s; }
.hero-logo-img      { animation: hero-enter 0.8s ease both 0.38s; }
.hero-logo-fallback { animation: hero-enter 0.8s ease both 0.38s; }
.hero-tagline       { animation: hero-enter 0.7s ease both 0.54s; }
.hero-sub           { animation: hero-enter 0.7s ease both 0.68s; }
.hero-cta           { animation: hero-enter 0.8s ease both 0.94s; }

/* ─── COUNTDOWN ────────────────────────────────────────── */
.countdown-section {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--sand) 0%, #fde7b0 100%);
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 3rem;
}

.compass-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.compass-divider::before,
.compass-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,119,168,0.45));
}

.compass-divider::after {
  background: linear-gradient(270deg, transparent, rgba(0,119,168,0.45));
}

.compass-icon { font-size: 1.4rem; }

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.countdown-item {
  flex: 1;
  min-width: 110px;
  max-width: 150px;
  background: var(--white);
  border: 1px solid rgba(0, 119, 168, 0.18);
  border-radius: 16px;
  padding: 1.6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 100, 150, 0.1);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.countdown-item:hover {
  border-color: rgba(0, 119, 168, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 100, 150, 0.18);
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--teal));
}

.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 35, 66, 0.42);
}

@keyframes cd-tick {
  0%   { transform: scale(1.00); }
  35%  { transform: scale(1.14); }
  65%  { transform: scale(0.93); }
  100% { transform: scale(1.00); }
}

.countdown-number.ticking,
.nav-cd-num.ticking { animation: cd-tick 0.28s ease; }


/* ─── MASCOT (mobile only) ──────────────────────────────── */
.mascot-mobile {
  display: none;
}

@media (max-width: 767px) {
  .mascot-mobile {
    display: block;
    width: clamp(160px, 55vw, 260px);
    height: auto;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 6px 18px rgba(0, 40, 80, 0.18));
  }
}

/* ─── FEATURES ─────────────────────────────────────────── */
.about-section {
  background: linear-gradient(180deg, #fde7b0 0%, var(--sand) 100%);
  padding: 5rem 1.5rem;
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) {
  .about-inner { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 119, 168, 0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 100, 150, 0.07);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(0, 119, 168, 0.35);
  box-shadow: 0 10px 32px rgba(0, 100, 150, 0.14);
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 184, 212, 0.14), rgba(0, 119, 168, 0.08));
  border: 1.5px solid rgba(0, 119, 168, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.feature-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-text {
  font-size: 0.9rem;
  color: rgba(10, 35, 66, 0.6);
  line-height: 1.7;
}

/* ─── SHIP STORE ────────────────────────────────────────── */
.store-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5C 100%);
  padding: 4rem 1.5rem;
}

.store-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 768px) {
  .store-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: left;
    justify-content: space-between;
  }
}

.store-icon {
  font-size: 3.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.store-icon img {
  width: 56px;
  height: 56px;
}

@media (max-width: 767px) {
  .store-icon img {
    width: 100px;
    height: 100px;
  }
}

.store-text { flex: 1; min-width: 0; }

.store-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-warm);
  margin-bottom: 0.4rem;
}

.store-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.store-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.9rem 2.2rem;
  border-radius: 7px;
  border: 2.5px solid #B8820A;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
  background-image:
    radial-gradient(circle 4.5px at 16px 13px,                            #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    radial-gradient(circle 4.5px at calc(100% - 16px) 13px,               #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    radial-gradient(circle 4.5px at 16px calc(100% - 13px),               #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    radial-gradient(circle 4.5px at calc(100% - 16px) calc(100% - 13px),  #fff 0%, #ddd 22%, #999 52%, #444 74%, transparent 84%),
    repeating-linear-gradient(89deg, transparent 0, transparent 3px, rgba(0,0,0,0.045) 3px, rgba(0,0,0,0.045) 4px),
    linear-gradient(170deg, #D8914A 0%, #AA6422 38%, #C47830 62%, #9E5C18 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 210, 100, 0.4),
    inset 0 -2px 5px rgba(50, 15, 0, 0.45),
    0 6px 22px rgba(0, 0, 0, 0.38),
    0 2px 0 rgba(184, 130, 10, 0.7);
}

.store-cta:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  box-shadow:
    inset 0 2px 3px rgba(255, 210, 100, 0.4),
    inset 0 -2px 5px rgba(50, 15, 0, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(184, 130, 10, 0.7);
}

/* ─── SOCIAL ────────────────────────────────────────────── */
.social-section {
  background: linear-gradient(180deg, var(--sand) 0%, #fde7b0 55%, var(--sand) 100%);
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}

.social-section .section-title { margin-bottom: 0.8rem; }

.social-sub {
  font-size: 1rem;
  color: rgba(10, 35, 66, 0.6);
  max-width: 420px;
  margin: 0 auto 2.8rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(0, 119, 168, 0.3);
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 100, 150, 0.08);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  border-color: var(--ocean);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 100, 150, 0.16);
}

.social-btn svg {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── Wave Dividers ─────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(36px, 4vw, 60px);
}

.wd-sand-to-navy { background: var(--sand); }
.wd-navy-to-sand { background: #0A2342; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 3px solid var(--sand-warm);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-logo { margin-bottom: 1rem; }

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-logo-fallback {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand-mid);
}

.footer-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.9;
  margin-top: 0.6rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }
