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

:root {
  --sunset-950: #8c2200;
  --sunset-900: #a52f02;
  --sunset-700: #e34b00;
  --sunset-500: #ff7c1f;
  --sunset-300: #ffbb73;
  --reef-900: #0b2531;
  --reef-700: #0f5663;
  --reef-500: #1ba9a2;
  --reef-300: #6fd9cf;
  --sand: #fff6eb;
  --ink: #0d1c26;
  --shadow: 0 22px 60px rgba(12, 31, 43, 0.18);
  --accent-orange: #ff8a2a;
  --accent-sky: #7dd3fc;
  --accent-sand: rgba(255, 246, 235, 0.92);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html{scroll-behavior:smooth; scroll-padding-top: 92px;}

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(31, 169, 162, 0.26), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255, 188, 115, 0.36), transparent 30%),
    linear-gradient(180deg, #ffe7c9 0%, #ffb36b 32%, #ff8230 64%, #ff6617 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  background-attachment: fixed;
  position: relative;
}

/* Global beach props overlay (icons + driftwood) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' opacity='0.85'%3E%3Cpath d='M55 70c10-18 40-18 50 0s-8 46-25 46-35-28-25-46Z'/%3E%3Cpath d='M70 55c-10-10-18-18-18-28 16 6 28 16 34 26M90 55c10-10 18-18 18-28-16 6-28 16-34 26'/%3E%3Cpath d='M150 70c16-6 32-6 48 0'/%3E%3Cpath d='M150 88c18-10 36-10 54 0'/%3E%3Cpath d='M150 106c16 6 32 6 48 0'/%3E%3Cpath d='M168 86c-2 18 8 34 24 44'/%3E%3Cpath d='M184 86c2 18-8 34-24 44'/%3E%3Cpath d='M60 170c10-8 22-8 32 0 10 8 22 8 32 0'/%3E%3Cpath d='M72 182c6 10 18 16 32 16s26-6 32-16'/%3E%3Cpath d='M170 160c0-14 22-14 22 0s-6 26-11 26-11-12-11-26Z'/%3E%3Cpath d='M162 148c-10-10-14-18-14-28 16 6 26 14 32 24M200 148c10-10 14-18 14-28-16 6-26 14-32 24'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 240px;
  background-repeat: repeat;
  opacity: 0.10;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 0;
}

body::after{
  content:"";
  position: fixed;
  left: -10vw;
  right: -10vw;
  bottom: -36px;
  height: 240px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='240' viewBox='0 0 720 240'%3E%3Cg fill='none' stroke='%236a3b1f' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' opacity='0.9'%3E%3Cpath d='M10 170c90-40 150-60 240-40 70 16 120 8 170-10 70-24 150-12 290 40'/%3E%3Cpath d='M120 150c30 20 60 34 92 42'/%3E%3Cpath d='M210 140c10 30 26 56 50 76'/%3E%3Cpath d='M330 122c22 22 44 36 70 44'/%3E%3Cpath d='M520 122c-18 26-40 46-70 60'/%3E%3Cpath d='M610 150c-20 18-44 34-74 48'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 720px 240px;
  opacity: 0.18;
  pointer-events: none;
  filter: blur(0.2px);
  z-index: 0;
}

.site-header, main, footer{
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  margin: 0 0 8px;
  color: var(--reef-900);
  letter-spacing: 0.6px;
}

p {
  margin: 0 0 14px;
  color: #183142;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 7vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(13, 28, 39, 0.12);
  box-shadow: 0 10px 30px rgba(12, 31, 43, 0.1);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 124, 31, 0.18), rgba(31, 169, 162, 0.18));
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 12px 24px rgba(165, 47, 2, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--reef-900);
  }

.brand-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0f5663;
}

.nav-toggle {
  display: none;
}

.nav-toggle,
.site-header > .btn {
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(13, 28, 39, 0.1);
  background: linear-gradient(120deg, rgba(13, 28, 39, 0.06), rgba(13, 28, 39, 0.02));
  color: var(--reef-900);
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 31, 43, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  min-height: 52px;
}

.nav-toggle .icon {
  display: inline-flex;
  width: 16px;
  height: 12px;
  position: relative;
}

.nav-toggle .icon::before,
.nav-toggle .icon::after,
.nav-toggle .icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle .icon::before { top: 0; }
.nav-toggle .icon span { top: 5px; }
.nav-toggle .icon::after { bottom: 0; }

.nav-toggle:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(12, 31, 43, 0.16);
}

.nav-toggle[aria-expanded="true"] {
  background: linear-gradient(120deg, rgba(255, 179, 0, 0.14), rgba(255, 255, 255, 0.72));
  box-shadow: 0 12px 26px rgba(255, 179, 0, 0.2);
}

.nav-toggle[aria-expanded="true"] .icon::before {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .icon::after {
  transform: translateY(-5px) rotate(-45deg);
}
.nav-toggle[aria-expanded="true"] .icon span {
  opacity: 0;
}

.nav-toggle:hover,
.site-header > .btn:hover {
  background: linear-gradient(120deg, rgba(255, 179, 0, 0.14), rgba(255, 255, 255, 0.82));
  box-shadow: 0 12px 26px rgba(255, 179, 0, 0.2);
}

.nav-toggle:active,
.site-header > .btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(12, 31, 43, 0.16);
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.4px;
  overflow: visible;
  align-items: center;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.25s ease;
  position: relative;
  overflow: visible;
}

.nav a:hover {
  background: rgba(12, 31, 43, 0.08);
  color: var(--reef-900);
}

.nav a.active{
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.nav a.active::before{
  content:"";
  position:absolute;
  inset: -8px -12px;
  border-radius: 999px;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.18), transparent 46%),
    url("assets/wood.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.20);
  border: 1px solid rgba(0,0,0,0.20);
  z-index: -1;
  transform: rotate(-0.2deg);
}

.nav a.active::after{
  content:"";
  position:absolute;
  inset: -8px -12px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 7px, rgba(0,0,0,0.08) 7px 14px);
  mix-blend-mode: overlay;
  opacity: 0.38;
  z-index: -1;
  pointer-events:none;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn.solid {
  background: linear-gradient(120deg, var(--sunset-500), var(--reef-300));
  color: var(--reef-900);
  box-shadow: 0 14px 34px rgba(31, 169, 162, 0.35);
}

.btn.solid:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(12, 31, 43, 0.14);
  color: var(--reef-900);
  background: rgba(255, 255, 255, 0.82);
}

.btn.ghost:hover {
  border-color: var(--sunset-700);
  box-shadow: 0 10px 24px rgba(165, 47, 2, 0.15);
}

.btn.wide {
  width: 100%;
}

.hero {
  padding: 70px 7vw 40px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 136, 0, 0.68), rgba(0, 160, 170, 0.32) 45%, rgba(10, 16, 22, 0.72) 95%),
    url("assets/promophoto2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-backdrop::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 170, 45, 0.35), transparent 40%),
    radial-gradient(circle at 80% 32%, rgba(39, 214, 206, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42));
  pointer-events:none;
}


.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.8;
}

.orb.o1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 40% 40%, #ffdcb0, rgba(255, 124, 31, 0.18));
  top: -120px;
  left: -120px;
}

.orb.o2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 60% 40%, rgba(27, 169, 162, 0.42), transparent 55%);
  right: -160px;
  bottom: -120px;
}

.palm-leaf {
  position: absolute;
  top: 6%;
  right: 12%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2), transparent 60%);
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 65%);
  transform: rotate(18deg);
  opacity: 0.4;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) 1fr;
  gap: 32px;
}

.hero-copy h1 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 0.98;
  color: var(--accent-orange);
  text-shadow: 0 10px 28px rgba(0,0,0,0.25);
  -webkit-text-stroke: 1px rgba(255,255,255,0.7);
  paint-order: stroke fill;
}

.hero-copy .lede {
  font-size: 17px;
  max-width: 720px;
  color: #0f2a37;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.ticket-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(13, 31, 43, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.ticket-strip span {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(31, 169, 162, 0.14);
}

.info-pill {
  margin-top: 12px;
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(12, 31, 43, 0.12);
  color: var(--ink);
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-self: center;
  justify-items: start;
}

.hero-visual > * {
  width: 100%;
}

.logo-chip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: 0 18px 46px rgba(12, 31, 43, 0.18);
}

.logo-row {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: 0 16px 36px rgba(12, 31, 43, 0.14);
}

.logo-row img {
  height: 40px;
  width: auto;
  background: rgba(255, 124, 31, 0.14);
  border-radius: 12px;
  padding: 8px;
}

.logo-chip img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 124, 31, 0.16), rgba(31, 169, 162, 0.16));
  padding: 10px;
}

.chip-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin: 0;
  color: var(--reef-700);
}

.chip-title {
  margin: 2px 0 0;
  font-weight: 800;
  color: var(--reef-900);
}

.chip-pill {
  padding: 8px 10px;
  background: rgba(255, 124, 31, 0.15);
  color: var(--sunset-900);
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.poster-frame {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 188, 115, 0.55), rgba(27, 169, 162, 0.32));
  border-radius: 20px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(165, 47, 2, 0.22);
}

.poster-frame img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(13, 27, 38, 0.12);
}

.poster-caption {
  position: absolute;
  bottom: 10px;
  left: 16px;
  background: rgba(12, 31, 43, 0.8);
  color: #fefefe;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 26px rgba(12, 31, 43, 0.28);
}

.hero-card {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: var(--shadow);
  width: min(420px, 100%);
  backdrop-filter: blur(8px);
}

.card-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(13, 27, 38, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--reef-900);
}

.card-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sunset-300), var(--sunset-700));
  box-shadow: 0 0 0 6px rgba(255, 124, 31, 0.2);
}

.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-line {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--ink);
}

.info-line span:last-child {
  color: var(--reef-700);
}

.card-note {
  font-size: 14px;
  color: #324552;
  margin: 6px 0 0;
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.92), rgba(255, 230, 206, 0.9));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 124, 31, 0.12);
  color: var(--sunset-950);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.subtext {
  max-width: 640px;
  color: #1e3647;
}

.aerial {
  position: relative;
}

.aerial-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 27, 38, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.aerial-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin: 12px;
  background: radial-gradient(circle at 20% 30%, rgba(27, 169, 162, 0.18), transparent 35%), #000;
}

.aerial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  filter: saturate(1.05);
}

.aerial-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 31, 43, 0.85);
  color: #fefefe;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.map-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--reef-900);
  padding: 9px 12px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: 0 12px 24px rgba(12, 31, 43, 0.15);
}

.palm-props {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.palm-props .coconut {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffc27a, #ff7c1f);
  top: 16%;
  right: 10%;
  box-shadow: 0 0 0 10px rgba(255, 124, 31, 0.16);
  opacity: 0.9;
}

.palm-props .frond {
  position: absolute;
  width: 120px;
  height: 120px;
  background: conic-gradient(from 120deg, rgba(27, 169, 162, 0.18), rgba(11, 38, 52, 0.1), rgba(27, 169, 162, 0.22));
  border-radius: 60% 40% 70% 30%;
  filter: blur(1px);
  opacity: 0.6;
}

.palm-props .frond.f1 {
  bottom: 6%;
  left: -6%;
  transform: rotate(-12deg);
}

.palm-props .frond.f2 {
  top: -8%;
  left: 18%;
  transform: rotate(26deg);
}

.map-mini{
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 160px;
  height: 108px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(12, 31, 43, 0.28);
  backdrop-filter: blur(6px);
}

.map-mini iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.map-mini-overlay{
  position: absolute;
  inset: 0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.52));
  color: rgba(255,255,255,0.94);
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 11px;
}

.map-mini-overlay:hover{
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.62));
}

.map-mini .gmark{
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: "Space Grotesk", sans-serif;
}

.aerial-copy {
  padding: 16px 18px 16px 0;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  gap: 10px;
  color: #14313f;
  font-weight: 800;
}

.expect-list li {
  position: relative;
  padding-left: 28px;
}

.expect-list li::before {
  content: attr(data-ico);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 18px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.ticket-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-top h3 {
  font-size: 28px;
  letter-spacing: 0.6px;
}

.price {
  font-size: 32px;
  margin: 6px 0;
  color: var(--sunset-900);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 169, 162, 0.16);
  color: var(--reef-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.pill.alt {
  background: rgba(255, 124, 31, 0.18);
  color: var(--sunset-900);
}

.pill.neutral {
  background: rgba(12, 31, 43, 0.1);
  color: var(--ink);
}

.ticket-card ul {
  padding-left: 18px;
  margin: 0 0 10px;
  color: #324552;
  display: grid;
  gap: 6px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.info-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: var(--shadow);
}

.timeline {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 24px;
  border: 1px dashed rgba(13, 27, 38, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.timecard {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(13, 27, 38, 0.12);
}

.timecard:last-child {
  border-bottom: none;
}

.time {
  font-weight: 800;
  color: var(--reef-700);
  letter-spacing: 0.5px;
}

.info-section {
  overflow: hidden;
}

.info-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.bring-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.bring-list li {
  position: relative;
  padding-left: 22px;
}

.bring-list li::before {
  content: "•";
  color: var(--sunset-900);
  position: absolute;
  left: 4px;
  top: 0;
}

.cta {
  display: flex;
  justify-content: center;
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 235, 0.96));
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 68px rgba(12, 31, 43, 0.22);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  gap: 24px;
  width: min(1120px, 100%);
  isolation: isolate;
}

.cta-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 140, 48, 0.20), transparent 36%),
    radial-gradient(circle at 82% 16%, rgba(27, 169, 162, 0.20), transparent 36%),
    radial-gradient(circle at 12% 86%, rgba(255, 188, 115, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 235, 0.96));
  z-index: 0;
}

.cta-card::after{
  content:"";
  position:absolute;
  inset: 12px;
  border-radius: 24px;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(13, 28, 39, 0.06) 0%, rgba(13, 28, 39, 0.06) 14%, transparent 40%),
    radial-gradient(circle at 78% 76%, rgba(13, 28, 39, 0.05) 0%, rgba(13, 28, 39, 0.05) 14%, transparent 40%),
    radial-gradient(circle at 46% 54%, rgba(27, 169, 162, 0.05) 0%, rgba(27, 169, 162, 0.05) 12%, transparent 36%);
  background-size: 240px 240px, 260px 260px, 300px 300px;
  background-repeat: repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.cta-card > *{
  position: relative;
  z-index: 1;
}

.cta-copy{
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 6px 6px 10px;
}

.lock-chip{
  background: rgba(255, 124, 31, 0.14);
  color: var(--sunset-900);
  letter-spacing: 1.2px;
  box-shadow: 0 8px 22px rgba(255, 124, 31, 0.15);
}

.cta-copy h2{
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.06;
  margin: 4px 0 0;
  color: var(--reef-900);
}

.cta-copy .subtext{
  font-size: 16px;
  color: #1f3b4a;
  max-width: 520px;
}

.cta-logo-stack{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: 0 18px 40px rgba(12, 31, 43, 0.18);
  width: fit-content;
}

.cta-logo-stack img{
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(12, 31, 43, 0.18));
}

.cta-form {
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 38, 0.08);
  box-shadow: 0 18px 38px rgba(12, 31, 43, 0.14);
}

.field {
  display: grid;
  gap: 6px;
}

.field.inline {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fdfbf8;
  border: 1px solid #e3dcd4;
}

.field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--sunset-700);
  border-radius: 6px;
}

label {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

input,
textarea {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(13, 27, 38, 0.12);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(27, 169, 162, 0.45);
}

.cta-card input,
.cta-card textarea{
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid #d7dfe5;
  background: #fdfbf8;
  box-shadow: inset 0 1px 0 #fff;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-card textarea{
  min-height: 96px;
}

.cta-card input:focus,
.cta-card textarea:focus{
  outline: none;
  border-color: var(--reef-300);
  box-shadow: 0 0 0 3px rgba(27, 169, 162, 0.14), inset 0 1px 0 #fff;
  background: #fff;
}

.cta-form label{
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #152f3c;
}

.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(12, 88, 92, 0.06), rgba(255, 255, 255, 0.96));
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--reef-900);
  border: 1px dashed rgba(13, 27, 38, 0.16);
  box-shadow: inset 0 1px 0 #fff;
}

.total-line span:last-child{
  font-size: 20px;
}

.cta-form .micro-note{
  margin: -4px 0 0;
  color: #3b5566;
}

.form-hint {
  margin: 0;
  font-size: 13px;
  color: var(--reef-700);
  min-height: 18px;
}

.form-hint[data-tone="warn"] {
  color: var(--sunset-900);
}

.form-hint[data-tone="success"] {
  color: var(--reef-700);
}

.ticket-qr {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
}

.ticket-pass {
  max-width: 560px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.25);
  background: #0b0f16;
}

#ticket-qr{
  margin-top: 18px;
  display: none;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(6, 25, 38, 0.85), rgba(4, 14, 23, 0.92));
  border: 1px solid rgba(13, 49, 62, 0.4);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

#ticket-qr.has-ticket{
  display: grid;
}

.ticket-preview{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.ticket-actions{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width: 100%;
}

.ticket-actions .btn{
  width: 100%;
}

#ticket-qr .micro-note{
  margin: 2px 0 0;
  color: #b1d7d7;
}

.ticket-secure{
  background: #fdfbf8;
  border: 1px solid #e3dcd4;
  padding: 12px 14px;
  border-radius: 14px;
  color: #213b49;
}

#submit-btn{
  border: none;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ff8a3a, #00b7a4);
  color: #0d2530;
  font-size: 16px;
  box-shadow: 0 16px 36px rgba(12, 31, 43, 0.2);
}

#submit-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(12, 31, 43, 0.24);
}

#submit-btn:active{
  transform: translateY(0);
}

.footer {
  padding: 28px 7vw 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
  gap: 12px;
  background: #0c1c27;
  color: #fefefe;
}

.footer a {
  color: #fefefe;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footnote {
  margin: 0;
  font-size: 13px;
  color: #d8e0e4;
}

.tag + h2 {
  margin-top: 10px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Debug helper: reveal all animated content when body has .debug-reveal (use ?debug=1) */
body.debug-reveal [data-animate] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: 3;
    justify-self: flex-start;
  }

  .poster-frame {
    order: 2;
  }

  .logo-chip {
    order: 1;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .aerial-card {
    grid-template-columns: 1fr;
  }

  .aerial-copy {
    padding: 0 18px 20px;
  }

  .aerial-media {
    margin: 10px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 10px;
    padding: 14px 5vw;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  }

  .brand {
    align-items: center;
    grid-column: 1 / span 3;
    grid-row: 1;
  }

  /* Weather widget always visible on mobile - in header */
  .nav-weather {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    padding: 6px 10px !important;
    font-size: 11px !important;
    gap: 4px !important;
    margin: 0 8px;
    position: relative;
    display: inline-flex !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-weather .weather-icon-compact {
    font-size: 16px !important;
  }

  .nav-weather .weather-temp-compact {
    font-size: 11px !important;
  }

  .nav-weather .weather-date-compact {
    font-size: 10px !important;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
  }

  .site-header > .btn {
    grid-column: 3;
    grid-row: 2;
    justify-self: stretch;
  }

  .nav {
    grid-column: 1 / span 3;
    grid-row: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
    padding: 10px 8px 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    margin: 0;
    box-shadow: 0 14px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: max-height 0.26s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
  }

  /* Hide weather widget from collapsed nav menu on mobile since it's in header */
  .nav > .nav-weather {
    display: none !important;
  }

  .nav a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 6px;
    border-radius: 12px;
    margin: 0;
    background: none;
    position: relative;
    background: linear-gradient(180deg, rgba(13,28,39,0.05), rgba(13,28,39,0.02));
    border: 1px solid rgba(13, 28, 39, 0.08);
    box-shadow: 0 8px 14px rgba(12, 31, 43, 0.06);
  }
  .nav a.active::before {
    background-image:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(0,0,0,0.18), transparent 46%),
      url("assets/wood.png");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    inset: -2px -4px;
  }
  .nav a.active {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    font-weight: bold;
  }
  .nav a.active::after {
    border-radius: 12px;
    inset: -2px -4px;
  }

  body.nav-ready .nav {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    padding: 0;
  }

  body.nav-ready.nav-open .nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 10px 8px 12px;
  }

  body.nav-ready.nav-open .nav-toggle {
    background: linear-gradient(120deg, rgba(255, 179, 0, 0.14), rgba(255, 255, 255, 0.82));
    box-shadow: 0 12px 26px rgba(255, 179, 0, 0.2);
  }

  .hero {
    padding: 32px 6vw;
  }

  .section {
    padding: 52px 6vw;
  }

  .field.inline {
    grid-template-columns: 1fr;
  }

  .cta-card{
    padding: 24px;
  }

  .cta-logo-stack img{
    width: 132px;
  }

  .cta-form{
    padding: 14px;
  }

  .poster-caption {
    position: static;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--reef-900);
    box-shadow: none;
  }

  .poster-frame {
    padding: 10px;
  }

  .highlights-card{
    padding: 0 5vw 16px;
  }

  .highlights-video{
    aspect-ratio: 16 / 9;
    min-height: 240px;
  }
}



/* ===== Cocktails menu ===== */
.menu-section .section-heading {
  max-width: 980px;
}

.cocktail-checkout{
  max-width: 1100px;
  margin: 10px auto 12px;
  padding: 0 7vw;
  color: rgba(255,255,255,0.92);
}

.cocktail-checkout .secure-row{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  font-weight: 700;
}

.cocktail-checkout .cocktail-email-row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  align-items:center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.cocktail-checkout label{
  color: rgba(255,255,255,0.95);
}

#cocktail-email{
  background: rgba(255,255,255,0.92);
}

.cocktail-checkout .hint{
  grid-column: 1 / -1;
  font-size: 0.92rem;
  opacity: 0.92;
  padding-top: 2px;
}

.prop-strip{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  margin: 14px auto 6px;
  max-width: 1100px;
  padding: 0 7vw;
  opacity: 0.9;
}

.prop{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 16px 34px rgba(12, 31, 43, 0.18);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
}

.prop svg{
  width: 22px;
  height: 22px;
}

.menu-strip{
  display:flex;
  gap: 16px;
  overflow-x: auto;
  padding: 18px 7vw 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.menu-strip:focus{
  outline: none;
}

.menu-strip::-webkit-scrollbar{
  height: 10px;
}
.menu-strip::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.20);
  border-radius: 999px;
  border: 2px solid rgba(10,16,22,0.25);
}
.menu-strip::-webkit-scrollbar-track{
  background: rgba(10,16,22,0.12);
  border-radius: 999px;
}

.menu-card{
  position: relative;
  flex: 0 0 auto;
  width: min(360px, 78vw);
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 60px rgba(12, 31, 43, 0.30);
  transform: translateZ(0);
}

.menu-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05);
}

.menu-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(12,18,24,0.05), rgba(12,18,24,0.82) 70%),
    radial-gradient(circle at 25% 20%, rgba(255,180,60,0.35), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(0,190,190,0.22), transparent 55%);
}

.menu-card .card-inner{
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.96);
}

.menu-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-top h3{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price{
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 800;
  letter-spacing: 0.6px;
}

.menu-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.ingredients{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.ingredients li{
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.97);
  font-weight: 750;
}

.ingredients li::before{
  content: attr(data-ico);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 18px;
}

.menu-actions{
  display:flex;
  gap: 10px;
  margin-top: auto;
}

.menu-actions .btn{
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.buy-cocktail{
  width: 100%;
}

.menu-note{
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.menu-footer{
  max-width: 1100px;
  margin: 10px auto 0;
  padding: 0 7vw 26px;
  color: rgba(255,255,255,0.92);
}

.menu-footer p{
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.footer .footnote.small{opacity:0.75;font-size:0.85rem;max-width: 980px;}


/* Cocktail card text accents (alternate orange / sky) */
.menu-card:nth-child(odd) .menu-top h3,
.menu-card:nth-child(odd) .price{
  color: var(--accent-orange);
}

.menu-card:nth-child(even) .menu-top h3,
.menu-card:nth-child(even) .price{
  color: var(--accent-sky);
}

.menu-card:nth-child(odd) .menu-list li::marker{ color: var(--accent-orange); }
.menu-card:nth-child(even) .menu-list li::marker{ color: var(--accent-sky); }

.menu-card:nth-child(odd) .menu-note strong{ color: var(--accent-orange); }
.menu-card:nth-child(even) .menu-note strong{ color: var(--accent-sky); }


@media (max-width: 860px){
  .cta-card{
    grid-template-columns: 1fr;
  }
  .cocktail-checkout .cocktail-email-row{
    grid-template-columns: 1fr;
  }
  .map-mini{
    width: 150px;
    height: 102px;
    left: 14px;
    bottom: 14px;
  }
}


.buy-cocktail:disabled{
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.25);
}


.highlights-card{
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2vw 10px;
}
.highlights-video{
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 480px;
  max-height: 80vh;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .highlights-card {
    max-width: 100vw;
    padding: 0 1vw 10px;
  }
  .highlights-video {
    min-height: 320px;
    border-radius: 20px;
  }
}

@media (max-width: 900px) {
  .highlights-card {
    max-width: 100vw;
    padding: 0 0.5vw 10px;
  }
  .highlights-video {
    min-height: 180px;
    border-radius: 14px;
  }
}

@media (max-width: 600px) {
  .highlights-card {
    max-width: 100vw;
    padding: 0 0vw 10px;
  }
  .highlights-video {
    min-height: 100px;
    border-radius: 8px;
  }
}

/* Extra small mobile devices - even more compact weather */
@media (max-width: 400px) {
  .nav-weather {
    padding: 5px 8px !important;
    gap: 3px !important;
  }

  .nav-weather .weather-icon-compact {
    font-size: 14px !important;
  }

  .nav-weather .weather-temp-compact {
    font-size: 10px !important;
  }

  .nav-weather .weather-date-compact {
    display: none !important; /* Hide date on very small screens */
  }
}

.section.highlights .section-heading h2{
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.section.highlights .section-heading .subtext{
  color: #f6f8fa;
  text-shadow: 0 10px 24px rgba(0,0,0,0.18);
}


.ff-logo-inline{
  width: min(220px, 60vw);
  height: auto;
  margin-top: 10px;
  opacity: 0.95;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}
.micro-note{
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.84);
}
.ticket-secure{ margin-top: 10px; }


/* Scroll transition when changing tabs/sections */
.section.scroll-focus{
  animation: sectionFocus 650ms cubic-bezier(.2,.9,.2,1);
}

@keyframes sectionFocus{
  0%{ transform: translateY(14px); opacity: 0.35; filter: blur(1px); }
  100%{ transform: translateY(0); opacity: 1; filter: blur(0); }
}

.contact-note{
  margin-top: 12px;
  font-size: 0.96rem;
  color: rgba(13, 28, 39, 0.86);
}
.contact-note a{
  color: var(--reef-900);
  text-decoration: underline;
  text-decoration-color: rgba(255, 124, 31, 0.55);
  text-underline-offset: 3px;
}
.phanda-link{
  color: var(--reef-900);
  text-decoration: underline;
  text-decoration-color: rgba(31,169,162,0.55);
  text-underline-offset: 3px;
}

/* --- Frame Creator --- */
#frame-creator {
  background: linear-gradient(120deg, rgba(255, 246, 235, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 24px 44px rgba(0,0,0,0.16);
  margin-top: 14px;
}

#frame-creator .section-heading{
  text-align: left;
}

.frame-editor {
  max-width: 450px;
  margin: 0 auto;
  padding: 20px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55), rgba(255,255,255,0.38)) , rgba(255,255,255,0.6);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.8);
}

.frame-editor::before,
.frame-editor::after{
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 15% 15%, rgba(255,138,58,0.25), transparent 35%),
              radial-gradient(circle at 85% 80%, rgba(0,183,164,0.22), transparent 32%);
  opacity: 0.55;
  pointer-events: none;
}

.frame-editor::after{
  inset: -18%;
  filter: blur(22px);
  opacity: 0.35;
}

.frame-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.frame-controls .btn{
  flex: 1 1 140px;
  justify-content: center;
  text-align: center;
}

.canvas-container {
  border: 2px dashed rgba(27, 169, 162, 0.45);
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 10px;
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  background: radial-gradient(circle at 30% 20%, rgba(255, 138, 58, 0.08), transparent 38%), #f6fbff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 0 0 1px rgba(13, 49, 62, 0.08);
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#capture-btn {
  margin-top: 10px;
}

.frame-inline{
  margin: 0 0 18px;
  padding: 0;
}

.frame-inline .section-heading{
  text-align: left;
  margin-bottom: 12px;
}

.frame-inline .frame-editor{
  margin: 0;
  width: 100%;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.frame-preview-overlay{
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 21, 0.76);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999;
}

.frame-preview-overlay.open{
  display: flex;
}

.frame-preview-card{
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 18px 44px rgba(0,0,0,0.25);
  padding: 14px 14px 20px;
  display: grid;
  gap: 10px;
}

.frame-preview-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #e6ecf1;
}

.frame-preview-card img{
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e3ebf0;
  box-shadow: inset 0 1px 0 #fff;
}

.frame-preview-card .micro-note{
  margin: 0;
  color: #32515f;
}

.frame-preview-card .tag{
  margin: 0;
}

.frame-preview-card .close-btn{
  border: none;
  background: #0d2530;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}

/* Payment buttons container */
.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* Apple Pay button styling */
.apple-pay-btn {
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

.apple-pay-btn:hover {
  background: #1a1a1a !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
}

.apple-pay-btn:active {
  transform: translateY(0);
}

.apple-pay-btn svg {
  flex-shrink: 0;
}

/* Responsive payment buttons */
@media (min-width: 600px) {
  .payment-buttons {
    flex-direction: row;
    gap: 16px;
  }

  .payment-buttons .btn {
    flex: 1;
  }
}

/* Compact Weather Widget in Navbar */
.nav-weather {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.12), rgba(27, 169, 162, 0.12));
  border: 1px solid rgba(13, 28, 39, 0.1);
  font-size: 13px;
  font-weight: 700;
  color: var(--reef-900);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
  cursor: help;
}

.nav-weather.loaded {
  opacity: 1;
  transform: scale(1);
}

.nav-weather:hover {
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.18), rgba(27, 169, 162, 0.18));
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.15);
  transform: scale(1.02);
}

.weather-loading-mini {
  font-size: 12px;
  color: var(--reef-700);
}

.weather-icon-compact {
  font-size: 18px;
  line-height: 1;
}

.weather-temp-compact {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--reef-900);
}

.weather-date-compact {
  font-size: 11px;
  font-weight: 700;
  color: var(--reef-700);
  letter-spacing: 0.3px;
}
