/* ============================================================
   Crooked Hook Resort — Zipli-inspired design system
   Lime accent · Deep teal text · Cream background
   Big Shoulders Display + Pathway Extreme
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --primary:       #62C03A;
  --primary-hover: #57AC34;
  --primary-soft:  #e3f3d9;
  --text:          #094D52;
  --text-light:    #506E72;
  --accent:        #000000;
  --border:        #DCDBD1;
  --background:    #FFFEF0;
  --background-2:  #F3F5FA;
  --white:         #ffffff;

  --f-display: 'Big Shoulders Display', 'Archivo Narrow', sans-serif;
  --f-body:    'Pathway Extreme', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw:  1320px;
  --nav-h: 100px;

  --shadow-card: 0 12px 28px rgba(9, 77, 82, 0.08);
  --shadow-soft: 0 6px 22px rgba(9, 77, 82, 0.10);
  --shadow-deep: 0 20px 56px rgba(9, 77, 82, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-hover); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 18px; }

.kicker {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--primary);
  display: inline-block;
}
.kicker.center::before { display: none; }
.kicker.center { justify-content: center; }

p { color: var(--text-light); line-height: 1.7; }
.lead { font-size: 18px; color: var(--text-light); line-height: 1.7; }
.text-accent { color: var(--primary); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-tight { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; overflow: hidden; }
.section-sm { padding: 70px 0; position: relative; }
.section-lg { padding: 140px 0; position: relative; overflow: hidden; }
.text-center { text-align: center; }
.bg-light { background: var(--background-2); }
.bg-dark { background: var(--text); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.78); }
.bg-dark .kicker { color: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: grid; place-items: center;
  transition: transform .25s ease;
}
.btn .ico svg { width: 12px; height: 12px; }
.btn:hover .ico { transform: rotate(-45deg); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline .ico { background: var(--text); color: var(--white); }
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-outline:hover .ico { background: var(--white); color: var(--text); }
.btn-light {
  background: var(--white);
  color: var(--text);
}
.btn-light .ico { background: var(--primary); color: var(--white); }
.btn-light:hover { background: var(--primary); color: var(--white); }
.btn-light:hover .ico { background: var(--white); color: var(--primary); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost .ico { background: var(--white); color: var(--text); }
.btn-ghost:hover { background: var(--white); color: var(--text); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  background: var(--background);
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo svg { width: 42px; height: 42px; }
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 24px;
}
.nav-links a {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-phone .ph {
  width: 36px; height: 36px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
}
.nav-phone .ph svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  color: var(--text);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: currentColor;
  margin: 6px auto;
  transition: transform .3s, opacity .3s;
}

/* ---------- Hero (large) ---------- */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--text);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 26s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,77,82,0.5) 0%, rgba(9,77,82,0.28) 38%, rgba(9,77,82,0.72) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}
.hero-leaf {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.22));
  opacity: 0.95;
  animation: leafFloat 7s ease-in-out infinite;
}
.hero-leaf.tl { --rot: -25deg; top: 8%; left: 4%; width: 130px; animation-delay: -2s; }
.hero-leaf.tr { --rot: 20deg; top: 12%; right: 6%; width: 110px; animation-delay: -0.5s; }
.hero-leaf.bl { --rot: 35deg; bottom: 10%; left: 6%; width: 100px; animation-delay: -3.5s; }
.hero-leaf.br { --rot: -15deg; bottom: 14%; right: 5%; width: 140px; animation-delay: -1.5s; }
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-22px) rotate(calc(var(--rot, 0deg) + 7deg)); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px 28px 120px;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(54px, 9vw, 130px);
  line-height: 0.95;
  margin: 0 auto 22px;
  max-width: 1000px;
}
.hero h1 .accent { color: var(--primary); display: inline-block; }
.hero .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Staggered entrance on load */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .kicker,
.hero h1,
.hero .hero-sub,
.hero-actions {
  opacity: 0;
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .kicker      { animation-delay: .1s; }
.hero h1           { animation-delay: .28s; }
.hero .hero-sub    { animation-delay: .52s; }
.hero-actions      { animation-delay: .72s; }

/* Scroll-down cue */
.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  animation: scrollBob 1.8s ease-in-out infinite;
  transition: background .2s ease, border-color .2s ease;
}
.hero-scroll:hover { background: var(--primary); border-color: var(--primary); }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-leaf, .hero-scroll,
  .hero .kicker, .hero h1, .hero .hero-sub, .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-leaf.tl { transform: rotate(-25deg) !important; }
  .hero-leaf.tr { transform: rotate(20deg) !important; }
  .hero-leaf.bl { transform: rotate(35deg) !important; }
  .hero-leaf.br { transform: rotate(-15deg) !important; }
}

/* Page hero (smaller) */
.page-hero {
  position: relative;
  min-height: 380px;
  background: var(--text);
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,77,82,0.55), rgba(9,77,82,0.75));
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 28px 60px;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}
.crumb {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.crumb a { color: rgba(255,255,255,0.7); }
.crumb a:hover { color: var(--primary); }

/* ---------- Section head ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head .lead { font-size: 17px; }

/* ---------- Adventure / activity cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--text) center / cover no-repeat;
  overflow: hidden;
}
.card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.15) 100%);
}
.card-price {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}
.card-tag {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(9,77,82,0.85);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 24px; margin-bottom: 10px; line-height: 1.05; color: var(--text); }
.card-body p { font-size: 14px; margin-bottom: 16px; flex: 1; color: var(--text-light); }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.card-meta svg { width: 14px; height: 14px; color: var(--primary); }

/* ---------- Banner cards (image with overlay) ---------- */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.banner {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--text) center / cover no-repeat;
  cursor: pointer;
}
.banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,77,82,0.05) 30%, rgba(9,77,82,0.85) 100%);
  transition: background .3s;
}
.banner:hover::after { background: linear-gradient(180deg, rgba(9,77,82,0.2) 30%, rgba(9,77,82,0.9) 100%); }
.banner-body {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 1;
  color: var(--white);
}
.banner-body h3 {
  color: var(--white);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.banner-body p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 16px;
}
.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.banner-cta .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  transition: transform .25s;
}
.banner-cta .ico svg { width: 12px; height: 12px; color: var(--white); }
.banner:hover .banner-cta .ico { transform: rotate(-45deg); }

/* ---------- Icon boxes ---------- */
.iconbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.iconbox { text-align: center; padding: 32px 20px; }
.iconbox .ic-circle {
  width: 96px; height: 96px;
  margin: 0 auto 22px;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text);
  transition: all .3s ease;
  position: relative;
}
.iconbox .ic-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s;
}
.iconbox:hover .ic-circle {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.iconbox:hover .ic-circle::after { opacity: 1; border-color: var(--primary); }
.iconbox .ic-circle svg { width: 40px; height: 40px; }
.iconbox h4 {
  font-family: var(--f-display);
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.iconbox p { font-size: 14px; line-height: 1.6; }

/* ---------- Two-col split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: var(--text) center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}
.split-img.tall { aspect-ratio: 3 / 4; }
.split-img.wide { aspect-ratio: 5 / 4; }
.split-img-decor {
  position: absolute;
  width: 100px;
  opacity: 0.95;
  z-index: 4;
}
.split-img-decor.tl { top: -32px; left: -32px; }
.split-img-decor.br { bottom: -32px; right: -32px; }

/* ---------- Slideshow (crossfade) ---------- */
.slideshow { position: relative; }
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.slideshow .slide.active { opacity: 1; z-index: 1; }
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 6px 16px rgba(9,77,82,0.22);
  transition: opacity .25s ease, background .2s ease, color .2s ease;
}
.slideshow:hover .slideshow-arrow { opacity: 1; }
.slideshow-arrow:hover { background: var(--primary); color: #fff; }
.slideshow-arrow.prev { left: 16px; }
.slideshow-arrow.next { right: 16px; }
.slideshow-arrow svg { width: 18px; height: 18px; }
@media (max-width: 760px) {
  .slideshow-arrow { opacity: 1; width: 40px; height: 40px; }
}
.split-text h2 { margin-bottom: 22px; }
.split-text p { font-size: 16px; margin-bottom: 18px; }

/* ---------- Stats / accolade strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 0;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.stat {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 12px 14px;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .num .accent { color: var(--primary); }
.stat .label {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

/* ---------- Testimonial ---------- */
.testimonial-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.testimonial-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: var(--text) center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}
.testimonial-quote {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 30px;
  text-transform: none;
  font-weight: 600;
}
.testimonial-by {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testimonial-by strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  display: block;
}
.testimonial-by small {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; }

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.blog-card .media {
  aspect-ratio: 16 / 11;
  background: var(--text) center / cover no-repeat;
}
.blog-card .body { padding: 26px; }
.blog-card .meta {
  display: flex;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 14px;
}
.blog-card .meta .tag { color: var(--primary); }
.blog-card h3 {
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--text);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 48px;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  margin: 0;
}
.cta-band h2 .accent { color: var(--primary); }
.cta-band p {
  color: rgba(255,255,255,0.78);
  margin-top: 12px;
  max-width: 540px;
}
.cta-band .leaf-decor {
  position: absolute;
  width: 200px;
  opacity: 0.25;
  pointer-events: none;
}
.cta-band .leaf-decor.l { top: -30px; left: -30px; }
.cta-band .leaf-decor.r { bottom: -40px; right: -20px; transform: scaleX(-1); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.newsletter .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.newsletter h3 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  margin: 0;
}
.newsletter form {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 540px;
}
.newsletter input {
  flex: 1;
  padding: 16px 22px;
  border: 0;
  background: var(--white);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text);
}
.newsletter input::placeholder { color: var(--text-light); }
.newsletter button {
  padding: 16px 28px;
  background: var(--text);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.newsletter button:hover { background: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
  font-family: var(--f-display);
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.footer-brand .brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-brand .brand-mark svg { width: 42px; height: 42px; }
.footer-brand .brand-mark img {
  height: 76px;
  width: auto;
  display: block;
  background: var(--background);
  padding: 12px 16px;
  border-radius: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  transition: background .25s;
}
.socials a:hover { background: var(--primary); color: var(--white); }
.socials svg { width: 15px; height: 15px; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a { color: rgba(255,255,255,0.65); }
.footer ul li a:hover { color: var(--primary); }
.footer address { font-style: normal; font-size: 14px; line-height: 1.75; }
.footer address strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Cabin detail layout ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail-main .lead-img {
  aspect-ratio: 16 / 9;
  background: var(--text) center / cover no-repeat;
  border-radius: 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft);
}
.detail-main h2 { font-size: 38px; margin-bottom: 18px; }
.detail-main p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; font-size: 16px; }
.feat-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.feat-cols h3 {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.feat-cols ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.feat-cols ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 2px;
  background: var(--primary);
}
.feat-cols ul li strong { color: var(--primary); font-weight: 700; }

.gallery-title {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  margin: 56px 0 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery-grid .g-img {
  aspect-ratio: 4 / 3;
  background: var(--text) center / cover no-repeat;
  border-radius: 16px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sidebar-card ul li {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.sidebar-card ul li:last-child { border-bottom: 0; padding-bottom: 0; }
.sidebar-card ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
}
.sidebar-card ul li a::after { content: "→"; color: var(--text-light); transition: transform .25s; }
.sidebar-card ul li a:hover { color: var(--primary); }
.sidebar-card ul li a:hover::after { transform: translateX(4px); color: var(--primary); }
.sidebar-card ul li.active a { color: var(--primary); }

.sidebar-cta {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.sidebar-cta .leaf-decor {
  position: absolute;
  width: 100px;
  opacity: 0.18;
  top: -10px; right: -10px;
  pointer-events: none;
}
.sidebar-cta h4 { color: var(--white); font-size: 18px; margin-bottom: 18px; line-height: 1.3; }
.sidebar-cta .phone-circle {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid; place-items: center;
}
.sidebar-cta .phone-circle svg { width: 24px; height: 24px; color: var(--white); }
.sidebar-cta .phone-number {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.sidebar-cta .btn { background: var(--white); color: var(--primary); }
.sidebar-cta .btn .ico { background: var(--primary); color: var(--white); }

.sidebar-form {
  background: var(--background);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 20px;
}
.sidebar-form h4 {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--f-body);
  font-size: 14px;
  border-radius: 999px;
  color: var(--text);
}
.sidebar-form textarea {
  border-radius: 18px;
  min-height: 100px;
  resize: vertical;
}
.sidebar-form input:focus, .sidebar-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.sidebar-form button {
  width: 100%;
  padding: 14px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sidebar-form button:hover { background: var(--primary-hover); }

/* ---------- Contact form layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 22px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text);
  border-radius: 999px;
}
.contact-form textarea {
  border-radius: 22px;
  min-height: 160px;
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 24px;
}
.contact-info .info-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info .info-row:first-child { padding-top: 0; }
.contact-info .ico {
  width: 48px; height: 48px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .ico svg { width: 20px; height: 20px; }
.contact-info strong {
  display: block;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info p, .contact-info a { color: var(--text); font-size: 15px; }
.contact-info a:hover { color: var(--primary); }
.map-wrap {
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.form-status { margin-top: 14px; color: var(--primary); font-weight: 600; }

/* ---------- Decorative leaves on sections ---------- */
.deco-leaf {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.section .container, .section-lg .container { position: relative; z-index: 1; }

/* ---------- Why Choose Us (Home 3 showcase) ---------- */
.why-choose { background: var(--background); position: relative; overflow: hidden; }
.why-choose .topo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='500' viewBox='0 0 600 500'%3E%3Cg fill='none' stroke='%23094D52' stroke-width='1' opacity='0.5'%3E%3Cpath d='M-20 120 Q150 60 320 130 T640 90'/%3E%3Cpath d='M-20 180 Q150 120 320 190 T640 150'/%3E%3Cpath d='M-20 240 Q150 180 320 250 T640 210'/%3E%3Cpath d='M-20 300 Q150 240 320 310 T640 270'/%3E%3Cpath d='M-20 360 Q150 300 320 370 T640 330'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 700px 580px;
  opacity: 0.06;
  pointer-events: none;
}
.why-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.why-media { position: relative; aspect-ratio: 1 / 1; }
.why-card-back {
  position: absolute; top: 4%; left: 0;
  width: 66%; height: 80%;
  border-radius: 20px;
  background-color: var(--text);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-img {
  position: absolute; top: 14%; left: 22%;
  width: 72%; aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: var(--text) center / cover no-repeat;
  box-shadow: var(--shadow-deep);
  transition: opacity .25s ease;
}
.wave-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='20' viewBox='0 0 46 20'%3E%3Cpath d='M3 10 Q8.5 3 14 10 T25 10 T36 10' fill='none' stroke='%2362C03A' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 46px 20px;
}
.why-media .wave-deco { position: absolute; pointer-events: none; z-index: 3; }
.why-media .wave-deco.w-top { top: -16px; left: 6%; width: 215px; height: 66px; }
.why-media .wave-deco.w-mid { top: 12%; left: 4%; width: 150px; height: 66px; }

.script-eyebrow {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-text > h2 { margin-bottom: 28px; }
.why-list { margin-top: 4px; }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  border-radius: 16px;
  cursor: pointer;
  align-items: start;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.why-item + .why-item { margin-top: 4px; }
.why-item .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  line-height: 1.15;
}
.why-item h4 { font-size: 24px; margin-bottom: 6px; text-transform: uppercase; }
.why-item p { font-size: 15px; margin: 0; line-height: 1.6; }
.why-item.active { background: var(--white); box-shadow: var(--shadow-card); }
.why-item:hover { transform: translateX(4px); }

@media (max-width: 1080px) {
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-media { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .why-text .script-eyebrow { font-size: 32px; }
  .why-item { padding: 18px 20px; gap: 16px; }
  .why-item h4 { font-size: 20px; }
}

/* ---------- Fun Map / hotspots (Home 2 showcase) ---------- */
.funmap { background: var(--text); position: relative; overflow: hidden; }
.funmap .topo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../resortphotos/lines.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.13;
  pointer-events: none;
}
.funmap-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.funmap-media { position: relative; }
.funmap-media img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-deep);
}
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  color: var(--text);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  display: grid; place-items: center;
  cursor: pointer;
  border: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  z-index: 2;
}
.map-dot span { line-height: 1; }
.map-dot:hover, .map-dot.active {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 6px rgba(98,192,58,0.4), 0 6px 16px rgba(0,0,0,0.35);
}
.funmap-text h2 { color: #fff; margin-bottom: 30px; }
.funmap-list { display: flex; flex-direction: column; }
.funmap-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 9px 0;
  color: rgba(255,255,255,0.45);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: color .2s ease;
}
.funmap-list li .ln {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.funmap-list li:hover, .funmap-list li.active { color: #fff; }
.funmap-list li:hover .ln, .funmap-list li.active .ln { background: #fff; color: var(--text); }

@media (max-width: 1080px) {
  .funmap-grid { grid-template-columns: 1fr; gap: 48px; }
  .funmap-media { max-width: 620px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .map-dot { width: 28px; height: 28px; font-size: 12px; }
  .funmap-list li { font-size: 15px; }
}

/* ---------- Promise band (dark iconboxes) ---------- */
.promise { position: relative; overflow: hidden; }
.promise .topo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../resortphotos/lines.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.promise .container { position: relative; z-index: 1; }
.promise-leaf {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: 0.22;
}
.promise-leaf.l { top: 8%; left: -10px; width: 140px; transform: rotate(-12deg); }
.promise-leaf.r { bottom: 4%; right: -14px; width: 160px; transform: scaleX(-1) rotate(-8deg); }

.promise .iconbox { transition: transform .3s ease; }
.promise .iconbox:hover { transform: translateY(-4px); }
.promise .ic-circle {
  background: var(--primary);
  border: none;
  color: #fff;
}
.promise .ic-circle::after { display: none; }
.promise .iconbox h4 { color: #fff; }
.promise .iconbox p { color: rgba(255,255,255,0.7); }

/* Outline buttons need light styling on dark sections */
.bg-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.bg-dark .btn-outline .ico { background: #fff; color: var(--text); }
.bg-dark .btn-outline:hover { background: #fff; color: var(--text); border-color: #fff; }
.bg-dark .btn-outline:hover .ico { background: var(--primary); color: #fff; }

/* Teal band with contour lines (e.g. cabins section) */
.lines-bg { position: relative; overflow: hidden; }
.lines-bg .topo {
  position: absolute; inset: 0; z-index: 0;
  background: url("../resortphotos/lines.png") center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.lines-bg .container { position: relative; z-index: 1; }

/* Flow the moved promise band into the map section above it */
.funmap { padding-bottom: 40px; }
.promise-after-map { padding-top: 50px; }

/* ---------- Amenities marquee ---------- */
.marquee {
  background: var(--primary);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}
.marquee-sep {
  display: inline-block;
  width: 20px; height: 24px;
  margin: 0 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28' fill='%23094D52'%3E%3Cpath d='M12 1 L17.5 9 H15 L19 16 H15.5 L20.5 24 H3.5 L8.5 16 H5 L9 9 H6.5 Z'/%3E%3Crect x='11' y='23' width='2' height='5'/%3E%3C/svg%3E") center / contain no-repeat;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .marquee-item { font-size: 20px; }
  .marquee-sep { margin: 0 18px; }
}

/* ---------- Reviews (centered carousel) ---------- */
.reviews { position: relative; overflow: hidden; text-align: center; }
.reviews .review-leaf {
  position: absolute; z-index: 2; pointer-events: none; opacity: .9;
}
.reviews .review-leaf.l1 { top: 26%; left: 11%; width: 56px; transform: rotate(-15deg); }
.reviews .review-leaf.r1 { top: 60%; right: 13%; width: 64px; transform: rotate(20deg); }
.reviews-head { position: relative; z-index: 3; max-width: 720px; margin: 0 auto; }
.reviews-head h2 { margin-bottom: 0; }

.review-carousel {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 34px auto 0;
}
.review-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  margin: 0 auto 26px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  border: 4px solid #fff;
  box-shadow: var(--shadow-card);
}
.review-avatar svg { width: 34px; height: 34px; }
.review-slides { position: relative; min-height: 200px; }
.review-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease;
}
.review-slide.active { position: relative; opacity: 1; visibility: visible; }
.review-quote {
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 26px;
}
.review-name {
  font-family: var(--f-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.review-source { font-size: 13px; color: var(--text-light); margin-top: 2px; }

.review-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 4;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.review-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.review-arrow svg { width: 18px; height: 18px; }
.review-arrow.prev { left: -84px; }
.review-arrow.next { right: -84px; }

.review-stats {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
.review-stat {
  padding: 6px 52px;
  border-right: 1px solid var(--border);
}
.review-stat:last-child { border-right: 0; }
.review-stat .score {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  color: var(--primary);
}
.review-stat .plat {
  font-family: var(--f-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 8px 0 6px;
}
.review-stat .ministars { display: flex; justify-content: center; gap: 2px; color: #f5a623; }
.review-stat .ministars svg { width: 14px; height: 14px; }
.review-stat .count { font-size: 13px; color: var(--text-light); margin-top: 7px; }

/* scattered polaroid photos (desktop decoration) */
.review-photo {
  position: absolute;
  z-index: 1;
  width: 160px; height: 200px;
  border: 8px solid #fff;
  border-radius: 6px;
  background: var(--text) center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(9,77,82,0.18);
}
.review-photo.p1 { top: 8%;  left: 9%;  transform: rotate(-8deg); }
.review-photo.p2 { top: 33%; left: 3%;  transform: rotate(6deg); width: 150px; height: 188px; }
.review-photo.p3 { top: 18%; right: 9%; transform: rotate(8deg); }
.review-photo.p4 { top: 56%; right: 5%; transform: rotate(-7deg); width: 150px; height: 188px; }

@media (max-width: 1200px) {
  .review-photo, .reviews .review-leaf { display: none; }
}
@media (max-width: 900px) {
  .review-arrow { width: 44px; height: 44px; }
  .review-arrow.prev { left: -6px; }
  .review-arrow.next { right: -6px; }
  .review-quote { padding: 0 50px; }
  .review-stat { padding: 14px 28px; border-right: 0; }
}

/* ---------- Lake conditions / fishing report ---------- */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cond-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cond-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
}
.cond-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.cond-ic {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary-soft); color: var(--text);
  display: grid; place-items: center; flex-shrink: 0;
}
.cond-ic svg { width: 26px; height: 26px; }
.cond-head h3 { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; line-height: 1; }
.cond-head .cond-where { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.cond-big {
  font-family: var(--f-display);
  font-size: 56px; line-height: 1;
  color: var(--text);
}
.cond-big .unit { font-size: 22px; color: var(--text-light); margin-left: 4px; }
.cond-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 700; margin-top: 8px; }
.cond-subs { display: flex; gap: 26px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.cond-sub b { display: block; font-family: var(--f-display); font-size: 24px; color: var(--text); line-height: 1; }
.cond-sub span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.cond-note { margin-top: 20px; font-size: 14px; color: var(--text-light); line-height: 1.6; }
.cond-foot {
  margin-top: auto; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-light);
}
.cond-foot a { color: var(--primary); font-weight: 700; white-space: nowrap; }
.pill { display: inline-block; padding: 5px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }
.pill.good { background: var(--primary-soft); color: var(--primary-hover); }
.pill.warn { background: #fbe6c8; color: #b06f12; }
.pill.info { background: #e0eef0; color: var(--text); }
.cond-updated {
  text-align: center; margin-top: 26px;
  font-size: 13px; color: var(--text-light); letter-spacing: 0.04em;
}
.cond-updated .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); margin-right: 7px; vertical-align: middle; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* Generation schedule band */
.gen-band { background: var(--text); color: #fff; border-radius: 24px; padding: 44px; text-align: center; position: relative; overflow: hidden; }
.gen-band .topo { position:absolute; inset:0; background:url("../resortphotos/lines.png") center/cover no-repeat; opacity:0.07; }
.gen-band > * { position: relative; z-index: 1; }
.gen-band h2 { color: #fff; margin-bottom: 10px; }
.gen-band p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 26px; }
.gen-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Fishing report */
.report-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 40px; box-shadow: var(--shadow-card);
  max-width: 880px; margin: 0 auto;
}
.report-card .r-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.report-card .r-date { font-family: var(--f-display); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); }
.report-card .r-by { font-size: 13px; color: var(--text-light); }
.report-card h3 { font-family: var(--f-display); font-size: 19px; text-transform: uppercase; margin: 26px 0 8px; color: var(--text); }
.report-card h3:first-of-type { margin-top: 0; }
.report-card p { color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }

/* Species quick-reference */
.species-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.species {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px;
}
.species h4 { font-family: var(--f-display); font-size: 18px; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.species .water { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.species p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }

@media (max-width: 1000px) {
  .cond-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .species-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .species-grid { grid-template-columns: 1fr; }
  .gen-band { padding: 32px 22px; }
  .report-card { padding: 28px 22px; }
}

/* ---------- 7-day forecast ---------- */
.wx-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.wx-day {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 10px 18px; text-align: center; box-shadow: var(--shadow-card);
  transition: transform .25s ease;
}
.wx-day:hover { transform: translateY(-4px); }
.wx-day .wx-name { font-family: var(--f-display); font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); }
.wx-day .wx-ic { width: 44px; height: 44px; margin: 14px auto 12px; color: var(--primary); }
.wx-day .wx-ic svg { width: 100%; height: 100%; }
.wx-day .wx-hi { font-family: var(--f-display); font-size: 26px; color: var(--text); line-height: 1; }
.wx-day .wx-lo { font-size: 14px; color: var(--text-light); margin-top: 3px; }
.wx-day .wx-desc { font-size: 11px; color: var(--text-light); margin-top: 9px; line-height: 1.35; min-height: 30px; }
.wx-loading { text-align: center; color: var(--text-light); padding: 20px 0; }
@media (max-width: 900px) { .wx-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .wx-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Article / blog prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.article-meta {
  color: var(--text-light);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.article-meta .tag { color: var(--primary); }
.prose h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 44px 0 14px; }
.prose h3 { font-size: 21px; margin: 28px 0 10px; }
.prose p { font-size: 17px; line-height: 1.8; color: var(--text-light); margin-bottom: 18px; }
.prose ul { margin: 0 0 20px; }
.prose ul li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.6;
}
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 12px; height: 2px;
  background: var(--primary);
}
.prose a { color: var(--primary); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text); }
.prose .article-cta {
  margin-top: 40px;
  padding: 28px;
  background: var(--background-2);
  border-radius: 16px;
  text-align: center;
}
.prose .article-cta p { margin-bottom: 18px; color: var(--text); font-size: 18px; }

/* ---------- FAQ (native details accordion) ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
  padding: 0 0 24px;
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

/* ---------- Utilities ---------- */
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }
.center-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards-grid, .blog-grid, .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .iconbox-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .testimonial-block, .detail-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--nav-h));
    background: var(--background);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-right .nav-phone, .nav-right .btn { display: none; }
  .nav-right { margin-left: 0; }
  .cards-grid, .blog-grid, .banner-grid, .iconbox-grid, .footer-grid, .feat-cols, .contact-form .row, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 8px; padding: 32px 0; }
  .stat .num { font-size: 42px; }
  .stat { padding: 12px 8px; }
  .cta-band .container, .newsletter .container { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .newsletter form { margin: 0; max-width: 100%; }
  .section, .section-lg { padding: 70px 0; }
  .hero { min-height: 580px; }
  .hero-inner { padding: 100px 24px 80px; }
  .hero-leaf.tl, .hero-leaf.tr { width: 80px; }
  .hero-leaf.bl, .hero-leaf.br { width: 90px; }
  .testimonial-quote { font-size: 22px; }
}
