/* ============================================================
   TRAVEL MAFIA — Sun-Bleached Riviera
   Light, soothing vacation aesthetic. Sky · Sand · Sea.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,600;1,9..144,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=JetBrains+Mono:ital,wght@0,400;0,500;0,700&display=swap');

:root {
  /* Vacation palette */
  --sky-top:      #BFE5F5;   /* high sky */
  --sky-mid:      #E5F4FB;   /* horizon haze */
  --sky-warm:     #FFE9D6;   /* sun band */
  --sand:         #FBEED6;
  --sand-warm:    #F5DDB6;
  --paper:        #FFFAF1;
  --paper-warm:   #FBF1DE;

  --ink:          #0F2A3D;   /* ocean-deep ink (instead of black) */
  --ink-soft:     rgba(15, 42, 61, 0.72);
  --ink-mute:     rgba(15, 42, 61, 0.55);
  --ink-faint:    rgba(15, 42, 61, 0.35);

  --ocean:        #1A9CC9;   /* brand blue — matches logo bg */
  --ocean-2:      #14B5E0;
  --ocean-deep:   #0B6E91;
  --foam:         #E6F6FB;

  --coral:        #E8654A;   /* softer than pure red */
  --coral-2:      #D14A2F;
  --brand-red:    #E11D2E;   /* sparingly, for hot CTAs */
  --sun:          #F6B860;
  --sun-glow:     #FFD89B;
  --palm:         #2E5E4E;
  --gold:         #C9A24B;

  --text:         #0F2A3D;
  --text-dim:     rgba(15, 42, 61, 0.65);
  --text-mute:    rgba(15, 42, 61, 0.48);

  --border:       rgba(15, 42, 61, 0.10);
  --border-strong:rgba(15, 42, 61, 0.20);

  /* Type */
  --font-display: "Fraunces", "Bodoni Moda", "Times New Roman", serif;
  --font-body:    "DM Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --radius:       4px;
  --radius-lg:    10px;
  --radius-xl:    18px;
  --container:    1240px;
  --gutter:       clamp(20px, 4vw, 56px);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    linear-gradient(180deg,
      var(--sky-top) 0%,
      var(--sky-mid) 32%,
      var(--sky-warm) 58%,
      var(--sand) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }

/* ===== Soft grain (subtle, paper texture) ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.15  0 0 0 0 0.20  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   SCENE — sky, sun, clouds, palms, gulls, waves
   ============================================================ */
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.scene__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 18%, rgba(255, 216, 155, 0.55), transparent 65%),
    radial-gradient(ellipse 70% 50% at 20% 12%, rgba(191, 229, 245, 0.6), transparent 60%);
}

/* Sun */
.scene__sun {
  position: absolute;
  top: 9%;
  right: 12%;
  width: clamp(90px, 12vw, 170px);
  height: clamp(90px, 12vw, 170px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #FFE4B5 0%, var(--sun) 60%, #E89942 100%);
  box-shadow:
    0 0 60px rgba(246, 184, 96, 0.65),
    0 0 120px rgba(246, 184, 96, 0.35);
}
.scene__sun-glow {
  position: absolute;
  top: 9%;
  right: 12%;
  width: clamp(90px, 12vw, 170px);
  height: clamp(90px, 12vw, 170px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 155, 0.55) 0%, transparent 70%);
  transform: scale(2.6);
  filter: blur(8px);
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(246,184,96,0.65), 0 0 120px rgba(246,184,96,0.35); }
  50%      { transform: scale(1.05); box-shadow: 0 0 80px rgba(246,184,96,0.85), 0 0 160px rgba(246,184,96,0.45); }
}
@keyframes sunGlow {
  0%, 100% { transform: scale(2.6); opacity: 0.6; }
  50%      { transform: scale(3.0); opacity: 0.9; }
}

/* Sun rays — orbit around sun, slow rotation */
.scene__rays {
  position: absolute;
  top: 9%;
  right: 12%;
  width: clamp(220px, 28vw, 400px);
  height: clamp(220px, 28vw, 400px);
  transform: translate(35%, -35%);
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(246, 184, 96, 0.45));
}
.scene__rays line { animation: rayPulse 4s ease-in-out infinite; transform-origin: center; }
.scene__rays line:nth-child(odd)  { animation-delay: 0s; }
.scene__rays line:nth-child(even) { animation-delay: 2s; }
@keyframes raysSpin {
  from { transform: translate(35%, -35%) rotate(0deg); }
  to   { transform: translate(35%, -35%) rotate(360deg); }
}
@keyframes rayPulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}

/* Sailing boat — outer track travels + flips, inner bobs */
.boat-track {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: clamp(60px, 7vw, 90px);
  animation: sailRound 32s ease-in-out infinite;
  z-index: 5;                       /* always above waves — never drowns */
  will-change: transform;
}
.boat {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 8px rgba(15, 42, 61, 0.35));
  animation: bob 4s ease-in-out infinite;
  transform-origin: 50% 90%;
  will-change: transform;
}
/* GPU-accelerated: transform instead of `left` (which triggers layout each frame). */
@keyframes sailRound {
  /* outbound: off-screen left → beach */
  0%   { transform: translateX(-100px) scaleX(1); }
  38%  { transform: translateX(58vw)   scaleX(1); }
  /* arrived, pause */
  48%  { transform: translateX(58vw)   scaleX(1);  animation-timing-function: steps(1, end); }
  /* flip in place (snap, no squish) */
  50%  { transform: translateX(58vw)   scaleX(-1); }
  /* return: beach → off-screen left */
  88%  { transform: translateX(-100px) scaleX(-1); }
  /* offshore rest, snap flip back */
  97%  { transform: translateX(-100px) scaleX(-1); animation-timing-function: steps(1, end); }
  100% { transform: translateX(-100px) scaleX(1); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

/* Clouds */
.scene__clouds {
  position: absolute;
  top: 10%;
  left: 0;
  width: 200%;
  height: 22%;
  min-height: 200px;
  opacity: 0.85;
}
.cloud {
  animation: drift 60s linear infinite;
  transform-origin: center;
  will-change: transform;
}
.cloud--a { animation-duration: 80s; }
.cloud--b { animation-duration: 110s; transform: translate(380px, 12px) scale(1.1); }
.cloud--c { animation-duration: 95s;  transform: translate(720px, -8px) scale(0.85); }
@keyframes drift {
  from { transform: translateX(-200px); }
  to   { transform: translateX(1500px); }
}
.cloud--b { animation-name: driftB; }
.cloud--c { animation-name: driftC; }
@keyframes driftB {
  from { transform: translate(180px, 12px) scale(1.1); }
  to   { transform: translate(1700px, 12px) scale(1.1); }
}
@keyframes driftC {
  from { transform: translate(520px, -8px) scale(0.85); }
  to   { transform: translate(1900px, -8px) scale(0.85); }
}

/* Seagulls */
.gull {
  position: absolute;
  width: 42px;
  height: 22px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 3px rgba(15, 42, 61, 0.18));
}
.gull { will-change: transform; }
.gull path { animation: flap 0.7s ease-in-out infinite; transform-origin: center; will-change: transform; }
.gull--1 { top: 18%; left: 0; animation: flyAcross1 28s linear infinite; }
.gull--2 { top: 26%; left: 0; animation: flyAcross2 36s linear infinite; animation-delay: -10s; width: 32px; height: 18px; opacity: 0.75; }
.gull--3 { top: 14%; left: 0; animation: flyAcross3 44s linear infinite; animation-delay: -22s; width: 50px; height: 26px; }
@keyframes flap {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.55); }
}
/* GPU-friendly: combine x + y into single transform, no `left` animation. */
@keyframes flyAcross1 {
  0%   { transform: translate(-10vw, 0); }
  25%  { transform: translate(20vw, -18px); }
  50%  { transform: translate(50vw, 10px); }
  75%  { transform: translate(80vw, -12px); }
  100% { transform: translate(110vw, 0); }
}
@keyframes flyAcross2 {
  0%   { transform: translate(-10vw, 0); }
  33%  { transform: translate(30vw, 14px); }
  66%  { transform: translate(70vw, -18px); }
  100% { transform: translate(110vw, 6px); }
}
@keyframes flyAcross3 {
  0%   { transform: translate(110vw, 0) scaleX(-1); }
  50%  { transform: translate(50vw, -22px) scaleX(-1); }
  100% { transform: translate(-10vw, 8px) scaleX(-1); }
}

/* Beach (right side, 1/4 screen) — sits behind water, fades at bottom */
.beach {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(200px, 25vw, 360px);
  height: clamp(160px, 19vw, 240px);
  z-index: 1;                      /* below ocean waves */
  pointer-events: none;
  filter: drop-shadow(-10px -4px 20px rgba(15, 42, 61, 0.10));
  /* fade sand gradually toward bottom AND left so waves wash over it on both edges */
  -webkit-mask-image: radial-gradient(ellipse 115% 135% at 100% 12%, #000 42%, rgba(0,0,0,0.55) 72%, transparent 100%);
          mask-image: radial-gradient(ellipse 115% 135% at 100% 12%, #000 42%, rgba(0,0,0,0.55) 72%, transparent 100%);
}
.beach__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pebble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pebble--1 { width: 5px; height: 4px; right: 22%; top: 38%; background: rgba(15, 42, 61, 0.22); }
.pebble--2 { width: 7px; height: 5px; right: 38%; top: 28%; background: rgba(15, 42, 61, 0.16); }
.pebble--3 { width: 4px; height: 3px; right: 14%; top: 22%; background: rgba(232, 101, 74, 0.35); }
.pebble--4 { width: 6px; height: 4px; right: 46%; top: 42%; background: rgba(15, 42, 61, 0.2); }

/* Palm — sits on dry sand above waterline */
.palm {
  position: absolute;
  width: clamp(100px, 12vw, 165px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(15, 42, 61, 0.18));
  z-index: 4;                      /* above sand and water */
}
.palm--right {
  right: 0%;
  bottom: clamp(80px, 10vw, 125px);
  transform-origin: 50% 100%;
  transform: scaleX(-1);
  animation: paddleR 9s ease-in-out infinite;
}
.palm__crown { transform-origin: 50% 100%; animation: sway 6s ease-in-out infinite; }
.palm--right .palm__crown { animation-duration: 7s; animation-direction: reverse; }
@keyframes sway {
  0%, 100% { transform: translateY(-22px) rotate(-1deg); }
  50%      { transform: translateY(-22px) rotate(1.5deg); }
}
@keyframes paddleR {
  0%, 100% { transform: scaleX(-1) rotate(-0.6deg); }
  50%      { transform: scaleX(-1) rotate(1.4deg); }
}

/* Ocean */
.scene__ocean {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  overflow: hidden;
  z-index: 3;                       /* waves wash over the sand */
}
.wave {
  position: absolute;
  left: -5%;
  width: 220%;
  height: 100%;
  will-change: transform;
}
.wave--back  { bottom: 18px; animation: waveRoll 14s linear infinite; opacity: 0.5; }
.wave--mid   { bottom: 8px;  animation: waveRoll 9s  linear infinite reverse; opacity: 0.7; }
.wave--front { bottom: 0;    animation: waveRoll 6s  linear infinite; }
@keyframes waveRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Layout ===== */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ===== Ticker / Top Bar ===== */
.ticker {
  background: linear-gradient(90deg, var(--ocean-deep), var(--ocean), var(--ocean-deep));
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(to right, var(--ocean-deep), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--ocean-deep), transparent); }
.ticker__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  width: max-content;
}
.ticker__track > span { display: inline-flex; align-items: center; gap: 14px; }
.ticker__track > span::after {
  content: "✦";
  color: var(--sun-glow);
  margin-left: 14px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Header / Nav ===== */
.nav {
  position: relative;
  z-index: 5;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 250, 241, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ocean);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6), 0 6px 20px rgba(26,156,201,0.35);
}
.brand__mark img {
  width: 100%; height: 100%; object-fit: cover;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}
.brand__name em {
  font-style: italic;
  font-weight: 800;
  color: var(--coral);
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ocean);
  border-radius: 999px;
  background: var(--ocean);
  color: #fff;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(26, 156, 201, 0.28);
}
.nav__cta:hover {
  background: var(--ocean-2);
  border-color: var(--ocean-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 156, 201, 0.38);
}
.nav__cta::before {
  content: "●";
  color: var(--sun-glow);
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(30px, 4.5vw, 65px) 0 clamp(180px, 18vw, 240px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 4.75vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.hero__sub-title {
  font-size: 0.3em;
  line-height: 2;
  display: block;
  margin-top: 0.2em;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero__sub-title .sep {
  color: var(--ocean);
  margin: 0 0.4em;
  font-style: normal;
  font-weight: 300;
}
.hero__title .ital {
  font-style: italic;
  font-weight: 300;
  color: var(--ocean-deep);
}
.hero__title .accent {
  color: var(--coral);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: 0.08em;
  height: 14px;
  background: var(--sun-glow);
  opacity: 0.55;
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-1deg);
}

.hero__sub {
  margin-top: 22px;
  max-width: 580px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero__sub a {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.hero__sub a:hover { color: var(--coral-2); }

/* ===== Search Bar (disabled demo) ===== */
.search {
  position: relative;
  margin-top: clamp(40px, 6vw, 70px);
}
.search__bar {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr auto;
  align-items: stretch;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(15, 42, 61, 0.08),
    0 30px 60px -20px rgba(15, 42, 61, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.search__bar.is-disabled {
  opacity: 0.75;
  filter: grayscale(0.35);
}
.search__bar.is-disabled .search__btn { background: var(--ink-mute); }
.search__bar.is-disabled .search__btn:hover { background: var(--ink-mute); }

/* "Launching Soon" stamp pinned to top-right of search bar */
.search__stamp {
  position: absolute;
  top: -16px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 18px -2px rgba(232, 101, 74, 0.55);
  transform: rotate(-2deg);
}
.search__stamp sup { font-size: 0.7em; top: -0.4em; position: relative; }
.search__stamp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
}
.search__field {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.search__field:last-of-type { border-right: 0; }

.search__field label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  font-weight: 600;
}
.search__field input,
.search__field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.search__field input::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.search__btn {
  background: var(--coral);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.25s;
}
.search__btn:hover { background: var(--coral-2); }
.search__btn svg { width: 16px; height: 16px; }

.search__caption {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Section Headers ===== */
.section {
  position: relative;
  padding: clamp(70px, 10vw, 140px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.eyebrow .num { font-weight: 700; }

/* ===== Giveaway ===== */
.giveaway {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.giveaway::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 30% at 90% 0%, rgba(246, 184, 96, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(26, 156, 201, 0.12), transparent 60%);
}
.giveaway::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.08  0 0 0 0 0.08  0 0 0 0.12 0'/></filter><rect width='100' height='100' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.giveaway__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.giveaway__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.giveaway__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

.prize {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.65);
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 6px 22px -10px rgba(15, 42, 61, 0.18);
}
.prize::before {
  content: "PRIZE №01";
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  background: var(--paper);
  padding: 0 10px;
  color: var(--coral);
}
.prize__icon {
  width: 56px; height: 56px;
  flex: none;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sun-glow), var(--sun));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  font-style: italic;
  box-shadow: 0 0 0 3px rgba(246, 184, 96, 0.25), 0 4px 12px rgba(246, 184, 96, 0.45);
}
.prize__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.prize__body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--border-strong);
  align-items: flex-start;
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: var(--ocean);
  line-height: 1;
  min-width: 50px;
}
.steps__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 2px 0 4px;
  color: var(--ink);
}
.steps__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ===== Form ===== */
.form-card {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--foam) 100%);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  position: relative;
  border: 1px solid var(--border);
  box-shadow:
    0 12px 0 -6px rgba(26, 156, 201, 0.25),
    0 30px 60px -20px rgba(15, 42, 61, 0.25);
}
.form-card {
  overflow: hidden;                 /* clip top stripe to card radius */
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ocean), var(--sun), var(--coral));
}

.form-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px dashed var(--border-strong);
}
.form-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}
.form-card__title em { font-style: italic; font-weight: 500; color: var(--coral); }
.form-card__id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.6;
}
.form-card__id b { color: var(--ocean-deep); font-weight: 600; }

.form-group {
  display: block;
  margin-bottom: 18px;
  position: relative;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--coral); margin-left: 4px; }

.input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.input-wrap:focus-within {
  border-color: var(--ocean);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 156, 201, 0.16);
}
.input-wrap__prefix {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ocean);
  padding: 0 0 0 16px;
  font-weight: 600;
}
.form-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.form-group input::placeholder {
  color: var(--ink-faint);
}

/* intl-tel-input overrides */
.input-wrap--iti { padding: 0; overflow: visible; }
.input-wrap--iti .iti { width: 100%; }
.input-wrap--iti .iti__tel-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  width: 100%;
}
.input-wrap--iti .iti__flag-container { left: 0; }
.input-wrap--iti .iti__selected-dial-code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ocean);
  font-weight: 600;
}
.input-wrap--iti .iti__dropdown-content {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(15,42,61,0.12);
  font-family: var(--font-body);
  font-size: 14px;
}
.input-wrap--iti .iti__search-input {
  font-family: var(--font-body);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
}

/* honeypot */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.tg-row {
  display: flex;
  gap: 10px;
  margin: 22px 0 8px;
}
.tg-row .btn-secondary { flex: 1; }

.form-msg {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  display: none;
}
.form-msg.error {
  display: block;
  background: rgba(232, 101, 74, 0.12);
  border: 1px solid rgba(232, 101, 74, 0.4);
  color: var(--coral-2);
}
.form-msg.ok {
  display: block;
  background: rgba(26, 156, 201, 0.12);
  border: 1px solid rgba(26, 156, 201, 0.4);
  color: var(--ocean-deep);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  color: #fff;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px -4px rgba(232, 101, 74, 0.5);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -4px rgba(232, 101, 74, 0.6); }
.btn-primary:disabled { opacity: 0.55; cursor: progress; }
.btn-primary .arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
}

.btn-secondary {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-secondary:hover {
  border-color: var(--ocean);
  background: rgba(26,156,201,0.06);
  color: var(--ocean-deep);
  transform: translateY(-2px);
}

.fineprint {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.7;
}

/* ===== Marquee Strip ===== */
.strip {
  background: linear-gradient(90deg, var(--ocean-deep), var(--ocean), var(--ocean-deep));
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}
.strip__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 64px);
  letter-spacing: -0.02em;
  animation: tickerScroll 32s linear infinite;
  width: max-content;
}
.strip__track > span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.strip__track > span::after {
  content: "✦";
  color: var(--sun-glow);
  font-style: normal;
  font-size: 0.6em;
}

/* ===== Footer ===== */
.footer {
  background:
    linear-gradient(180deg, var(--ocean-deep) 0%, #082F44 100%);
  color: var(--foam);
  padding: clamp(60px, 8vw, 100px) 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'><path d='M0 30 C 200 5, 400 55, 600 30 C 800 5, 1000 55, 1200 30 L 1200 0 L 0 0 Z' fill='%23FBEED6'/></svg>") repeat-x;
  background-size: 1200px 60px;
}
.footer__masthead {
  text-align: center;
  padding: 40px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 40px;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 12vw, 180px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--foam);
}
.footer__logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
}
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(230, 246, 251, 0.65);
  margin-top: 24px;
}
.footer__tagline span { color: var(--sun); margin: 0 12px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 20px;
}
.footer__col p {
  font-size: 14px;
  color: rgba(230, 246, 251, 0.75);
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 360px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 6px 0;
}
.footer__col li a {
  color: rgba(230, 246, 251, 0.75);
  transition: color 0.2s;
}
.footer__col li a:hover { color: var(--sun); }

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
  background: rgba(255,255,255,0.04);
}
.social:hover {
  border-color: var(--sun);
  background: rgba(246, 184, 96, 0.08);
  transform: translateY(-2px);
}
.social__icon {
  width: 28px; height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--foam);
}
.social__icon svg { width: 18px; height: 18px; }
.social__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.social__name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 246, 251, 0.55);
}
.social__handle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--foam);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 246, 251, 0.55);
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sun);
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.18s; }
.reveal-3 { animation-delay: 0.32s; }
.reveal-4 { animation-delay: 0.48s; }
.reveal-5 { animation-delay: 0.66s; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .giveaway__grid { grid-template-columns: 1fr; }
  .search__bar { grid-template-columns: 1fr 1fr; }
  .search__field:nth-child(2) { border-right: 0; }
  .search__btn { grid-column: 1 / -1; padding: 18px; justify-content: center; }
  .palm { width: clamp(90px, 18vw, 140px); opacity: 0.7; }
  .gull--3 { display: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .nav__cta { padding: 9px 14px; font-size: 9px; }
  .brand__name { font-size: 18px; }
  .search__bar { grid-template-columns: 1fr; }
  .search__field { border-right: 0; border-bottom: 1px solid var(--border); }
  .search__field:last-of-type { border-bottom: 0; }
  .socials { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ticker { font-size: 10px; }
  .palm--right { right: 0%; opacity: 0.8; bottom: clamp(75px, 16vw, 110px); width: clamp(75px, 18vw, 115px); }
  .beach { width: clamp(180px, 40vw, 280px); height: clamp(140px, 22vw, 200px); }
  .scene__sun, .scene__sun-glow { top: 4%; right: 6%; }
}

@media (max-width: 480px) {
  .form-card { box-shadow: 0 6px 0 -3px rgba(26,156,201,0.25), 0 20px 40px -15px rgba(15,42,61,0.25); }
  .prize { flex-direction: column; }
  .palm { display: none; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker__track, .strip__track,
  .cloud, .gull, .palm__crown, .palm,
  .wave, .scene__sun, .scene__sun-glow,
  .scene__rays, .scene__rays line,
  .boat, .boat-track { animation: none !important; }
}

/* ===== Selection ===== */
::selection { background: var(--sun-glow); color: var(--ink); }
