:root {
  --orange: #fe822a;
  --orange-deep: #fd7028;
  --coral: #ff8a4d;
  --peach: #ffa564;
  --gold: #fbc02d;
  --magenta: #f06a3c;
  --aqua: #5bb3bd;
  --aqua-deep: #3c8ea0;
  --grad: linear-gradient(100deg, #fd7028 0%, #fe822a 48%, #fbc02d 100%);
  --grad-soft: linear-gradient(120deg, #fe822a, #ffa564);
  --grad-aqua: linear-gradient(120deg, #5bb3bd, #3c8ea0);
  --ink: #2a1606;
  --cream: #fff6ec;
  --cream-2: #ffeede;
  --night: #1c1207;
  --radius: 26px;
  --maxw: 1180px;
  font-synthesis: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* wordmark (until a logo image arrives) */
.wordmark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(100deg, #fe822a, #fbc02d);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- decorative ---------- */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.blob--1 { width: 46vw; height: 46vw; top: -12vw; right: -10vw; background: radial-gradient(circle, #fe822a, transparent 70%); }
.blob--2 { width: 40vw; height: 40vw; bottom: -10vw; left: -12vw; background: radial-gradient(circle, #5bb3bd, transparent 70%); opacity: .4; }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.section { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 150px) 24px; }

.kicker { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; color: var(--orange-deep); margin-bottom: 18px; }
.big {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; line-height: .98; letter-spacing: -.02em;
  font-size: clamp(2.2rem, 6.2vw, 4.6rem); margin-bottom: 26px;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 720px; color: #6a4a30; }
.lead strong { color: var(--ink); }

.hl { color: var(--orange-deep); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hl--2 { background: linear-gradient(100deg, #ffa564, #fbc02d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; font-weight: 700;
  padding: 15px 26px; border-radius: 100px; text-decoration: none;
  font-size: 1rem; box-shadow: 0 10px 30px rgba(254,130,42,.35);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.btn span { transition: transform .25s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(254,130,42,.45); }
.btn:hover span { transform: translateX(5px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: none; border: 2px solid rgba(42,22,6,.18); }
.btn--ghost:hover { border-color: var(--orange-deep); color: var(--orange-deep); box-shadow: none; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--big { padding: 19px 34px; font-size: 1.12rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px clamp(20px, 4vw, 48px);
  transition: background .3s, backdrop-filter .3s, padding .3s;
}
.nav.scrolled { background: rgba(28,18,7,.72); backdrop-filter: blur(14px); padding-top: 10px; padding-bottom: 10px; }
.nav__logo { position: relative; display: inline-flex; text-decoration: none; }
.nav__logo img { height: 50px; width: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,.25)); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: #fff; text-decoration: none; font-weight: 500; font-size: .95rem; opacity: .9; transition: opacity .2s; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav__links a:hover { opacity: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 2; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
  overflow: hidden;
}

/* pure-CSS sunset + pool scene */
.hero__scene { position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: linear-gradient(180deg, #5a4a6e 0%, #9a5a72 20%, #d4765a 40%, #fd7028 58%, #fe9a3d 72%, #fbc02d 86%); }
.hero__scene::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(28,18,7,.72) 0%, rgba(28,18,7,.42) 45%, rgba(28,18,7,.05) 100%);
}
.sun {
  position: absolute; left: 62%; top: 30%; width: clamp(180px, 26vw, 360px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7e6 0%, #ffd96b 38%, #ff9a4d 70%, rgba(255,154,77,0) 72%);
  filter: blur(.5px); animation: sunpulse 7s ease-in-out infinite;
}
@keyframes sunpulse { 50% { transform: scale(1.05); opacity: .92; } }
.cloud { position: absolute; height: 22px; border-radius: 100px; background: rgba(255,255,255,.35); filter: blur(6px); }
.cloud--1 { top: 22%; left: 8%; width: 220px; animation: drift 40s linear infinite; }
.cloud--2 { top: 16%; left: 45%; width: 150px; opacity: .6; animation: drift 60s linear infinite; }
@keyframes drift { from { transform: translateX(-10vw);} to { transform: translateX(110vw);} }
.skyline {
  position: absolute; left: 0; right: 0; bottom: 30%; height: 11%;
  background: linear-gradient(180deg, #3a2012, #1c0e05);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 30px, transparent 30px 36px, #000 36px 52px, transparent 52px 58px, #000 58px 92px, transparent 92px 100px);
          mask-image: repeating-linear-gradient(90deg, #000 0 30px, transparent 30px 36px, #000 36px 52px, transparent 52px 58px, #000 58px 92px, transparent 92px 100px);
  opacity: .92;
}
.pool {
  position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: linear-gradient(180deg, #8fd0d4 0%, #5bb3bd 32%, #3c8ea0 100%);
  box-shadow: inset 0 18px 40px rgba(255,255,255,.4);
}
.pool::before { /* sun reflection on water */
  content: ""; position: absolute; left: 55%; top: 0; width: 18%; height: 100%;
  background: linear-gradient(180deg, rgba(255,233,160,.85), rgba(255,233,160,0));
  filter: blur(8px); transform: translateX(-50%);
}
.pool__shimmer {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,.28) 0 2px, transparent 2px 16px);
  animation: shimmer 5s linear infinite; opacity: .6;
}
@keyframes shimmer { to { background-position: 0 24px; } }

.hero__inner { max-width: 900px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.92); border: 1px solid rgba(254,130,42,.3);
  color: var(--magenta); font-weight: 600; font-size: .85rem; padding: 8px 16px;
  border-radius: 100px; margin-bottom: 26px; box-shadow: 0 6px 18px rgba(253,112,40,.18);
}
.hero__title {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: clamp(2.7rem, 8.5vw, 6.4rem); line-height: .94; letter-spacing: -.03em;
  margin-bottom: 26px; color: #fff; text-shadow: 0 4px 30px rgba(42,22,6,.35);
}
.hero__sub { font-size: clamp(1.1rem, 2.2vw, 1.5rem); max-width: 640px; color: rgba(255,255,255,.92); margin-bottom: 36px; text-shadow: 0 2px 16px rgba(42,22,6,.3); }
.hero__sub em { color: #ffe6b0; font-style: italic; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.12); }

.hero__stats { list-style: none; display: flex; gap: clamp(24px, 5vw, 60px); flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #ffe6b0; line-height: 1; }
.hero__stats span { font-size: .9rem; color: rgba(255,255,255,.82); }

.hero__marquee { position: absolute; bottom: 28px; left: 0; right: 0; overflow: hidden; opacity: .2; pointer-events: none; z-index: 2; color: #fff; }
.marquee__track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2.5rem, 7vw, 5.5rem); letter-spacing: -.02em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.scroll-cue { position: absolute; bottom: 24px; right: 28px; z-index: 3; font-size: .8rem; color: rgba(255,255,255,.85); text-decoration: none; text-align: center; line-height: 1.4; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(8px); } }

/* ---------- about ---------- */
.about .big { max-width: 14ch; }

/* ---------- why cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 50px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid rgba(42,22,6,.06);
  box-shadow: 0 18px 40px rgba(253,112,40,.08);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: 0 28px 60px rgba(254,130,42,.2); }
.card__emoji { font-size: 2.6rem; margin-bottom: 16px; display: inline-block; }
.card:hover .card__emoji { animation: wiggle .5s ease; }
@keyframes wiggle { 25%{transform:rotate(-12deg)} 75%{transform:rotate(12deg)} }
.card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -.01em; }
.card p { color: #6a4a30; font-size: .98rem; }

/* ---------- vibe ---------- */
.vibe { background: var(--night); color: var(--cream); border-radius: 40px; max-width: calc(var(--maxw) + 48px); }
.vibe .kicker { color: #ffa564; }
.vibe .big { color: #fff; }
.vibe__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin-top: 46px; }
.vibe__item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 20px 22px; border-radius: 18px; transition: background .25s, transform .25s, border-color .25s;
}
.vibe__item:hover { background: rgba(254,130,42,.14); border-color: rgba(254,130,42,.45); transform: translateX(6px); }
.vibe__item span { font-size: 1.7rem; line-height: 1; }
.vibe__item p { color: #efe0cf; font-size: 1rem; }

/* ---------- spots ---------- */
.spots__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 46px; }
.spot {
  position: relative; padding: 38px 26px 30px; border-radius: var(--radius);
  background: var(--grad); color: #fff; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.spot:nth-child(even) { background: var(--grad-aqua); }
.spot:nth-child(4) { background: var(--ink); }
.spot:hover { transform: translateY(-8px) scale(1.015); }
.spot__num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 2.6rem; opacity: .55; display: block; margin-bottom: 24px; }
.spot h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.5rem; margin-bottom: 6px; }
.spot p { opacity: .92; font-size: .95rem; }

/* ---------- follow ---------- */
.follow { display: flex; justify-content: center; }
.follow__card {
  text-align: center; background: var(--night); color: #fff;
  border-radius: 40px; padding: clamp(50px, 8vw, 90px) clamp(28px, 6vw, 80px);
  width: 100%; position: relative; overflow: hidden;
}
.follow__scene { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #8a5a72 0%, #d4765a 38%, #fd7028 66%, #ffa564 100%); opacity: .5; }
.follow__card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 120%, rgba(254,130,42,.55), transparent 60%), linear-gradient(0deg, rgba(28,18,7,.6), rgba(28,18,7,.25)); }
.follow__card > *:not(.follow__scene) { position: relative; z-index: 2; }
.follow__logo { height: 92px; width: auto; display: inline-block; margin: 0 auto 24px; filter: drop-shadow(0 6px 20px rgba(0,0,0,.3)); }
.follow__card h2 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2rem, 5.5vw, 3.6rem); line-height: 1; margin-bottom: 18px; letter-spacing: -.02em; }
.follow__card p { color: #f0ddc8; max-width: 460px; margin: 0 auto 34px; font-size: 1.08rem; }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 2; padding: 50px 24px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(42,22,6,.1); padding-top: 34px; }
.footer__mark { height: 54px; width: auto; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: var(--ink); text-decoration: none; font-weight: 500; opacity: .75; }
.footer__links a:hover { opacity: 1; color: var(--orange-deep); }
.footer__copy { color: #9a8268; font-size: .88rem; width: 100%; }

/* ---------- gallery ---------- */
.gallery__grid {
  margin-top: 46px;
  columns: 4 220px;
  column-gap: 14px;
}
.g-item {
  margin: 0 0 14px; break-inside: avoid; border-radius: 18px; overflow: hidden;
  position: relative; background: var(--cream-2);
  box-shadow: 0 14px 34px rgba(253,112,40,.1);
}
.g-item img { width: 100%; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(254,130,42,.22), transparent 55%); opacity: 0; transition: opacity .35s; }
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }

/* placeholder gallery tiles (until photos arrive) */
.g-item.ph { display: flex; align-items: center; justify-content: center; min-height: 180px;
  background: linear-gradient(135deg, #ffeede, #ffe0c2); color: var(--orange-deep); }
.g-item.ph.g-tall { min-height: 300px; }
.g-item.ph span { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 1.8rem; opacity: .8; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track, .scroll-cue, .blob, .sun, .cloud, .pool__shimmer { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .vibe { border-radius: 28px; margin-left: 12px; margin-right: 12px; }
  .hero__marquee { display: none; }
}
