:root {
  --mangrove: #10b981; --river: #14b8a6; --mud: #4d7c0f; --gold: #ffd60a;
  --moss: #0f7b4d; --mist: #f0fdf4; --mist-2: #dcfce7; --ink: #0a2e1c;
  --deep: #065f36; --leaf: #22c55e;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--mist); color: var(--ink); font-family: "Work Sans", sans-serif; line-height: 1.6; overflow-x: hidden; cursor: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Fraunces", serif; font-weight: 500; letter-spacing: -0.01em; }
.eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
a { color: inherit; }
button { font-family: inherit; cursor: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

nav { position: sticky; top: 0; z-index: 100; background: rgba(16,185,129,.94); backdrop-filter: blur(8px); color: var(--mist); border-bottom: 2px solid var(--gold); }
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: "Fraunces", serif; font-size: 19px; font-weight: 600; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--gold); }
.navlinks { display: flex; gap: 30px; font-size: 14px; color: rgba(255,249,236,.85); }
.navlinks a { text-decoration: none; transition: color .15s; position: relative; }
.navlinks a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--gold); transition: width .2s; }
.navlinks a:hover { color: var(--gold); }
.navlinks a:hover::after { width: 100%; }
.navlinks a.active { color: var(--gold); }
.navlinks a.active::after { width: 100%; }
.btn-nav { background: var(--gold); color: var(--ink); font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 30px; text-decoration: none; border: none; cursor: pointer; }
.btn-nav:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 6px 18px rgba(255,214,10,.5); }
.navtoggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.navtoggle span { width: 22px; height: 2px; background: var(--mist); }
#navcheck { display: none; }

.marquee { background: var(--moss); color: var(--mist); overflow: hidden; white-space: nowrap; padding: 9px 0; border-bottom: 2px solid var(--gold); }
.marquee-track { display: inline-block; animation: scrollMarquee 26s linear infinite; }
.marquee-track span { display: inline-block; padding: 0 22px; font-family: "IBM Plex Mono"; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; }
@keyframes scrollMarquee { 0% { transform: translateX(0);} 100% { transform: translateX(-50%);} }

.hero { position: relative; color: var(--mist); min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0b2a1e; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,60,45,.45) 0%, rgba(9,45,35,.72) 55%, rgba(7,32,25,.92) 100%); }
.hero-tint { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(34,197,94,.18), rgba(20,184,166,.16), rgba(255,214,10,.18)); background-size: 300% 300%; animation: gradientDrift 12s ease infinite; mix-blend-mode: overlay; }
@keyframes gradientDrift { 0% {background-position:0% 50%;} 50% {background-position:100% 50%;} 100% {background-position:0% 50%;} }
.firefly { position: absolute; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px 2px rgba(255,214,10,.9); opacity: 0; z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 110px 0 80px; width: 100%; }
.hero .eyebrow { color: var(--gold); margin-bottom: 16px; display: inline-flex; align-items: center; }
.hero h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.06; margin-bottom: 20px; max-width: 680px; }
.hero h1 em { font-style: italic; background: linear-gradient(90deg, var(--gold), var(--moss), var(--river), var(--gold)); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradientDrift 5s linear infinite; }
.hero p { font-size: clamp(15px, 1.7vw, 17px); color: rgba(255,249,236,.9); max-width: 460px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.shine { position: relative; overflow: hidden; }
.shine::after { content: ""; position: absolute; top: 0; left: -60%; width: 35%; height: 100%; background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); transition: left .55s ease; }
.shine:hover::after { left: 130%; }
.btn-primary { background: linear-gradient(120deg, var(--gold), var(--moss)); color: var(--ink); border: none; font-weight: 700; padding: 14px 28px; font-size: 14px; border-radius: 30px; text-decoration: none; display: inline-block; cursor: pointer; box-shadow: 0 4px 16px rgba(34,197,94,.35); }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 26px rgba(34,197,94,.5); }
.btn-ghost { border: 2px solid rgba(255,249,236,.6); color: var(--mist); background: rgba(255,255,255,.06); padding: 13px 28px; font-size: 14px; border-radius: 30px; text-decoration: none; transition: background .2s, transform .15s; }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.live-pill { display: inline-flex; align-items: center; gap: 8px; font-family: "IBM Plex Mono"; font-size: 12px; color: rgba(255,249,236,.85); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #5cd68c; }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(20px,4vw,40px); margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,214,10,.3); max-width: 560px; }
.stat-num { font-family: "IBM Plex Mono"; font-size: clamp(20px,2.4vw,26px); color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,249,236,.7); margin-top: 2px; }

section { position: relative; z-index: 1; padding: clamp(56px,9vw,96px) 0; }
.page-hero { background: linear-gradient(135deg, var(--moss), var(--mangrove)); color: var(--mist); padding: clamp(60px,9vw,90px) 0; }
.page-hero h1 { font-size: clamp(30px,5vw,44px); margin-top: 10px; }
.page-hero p { max-width: 560px; color: rgba(255,249,236,.85); margin-top: 14px; }
.page-hero .eyebrow { color: var(--gold); }
.section-head { max-width: 560px; margin-bottom: clamp(36px,6vw,52px); display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px,4vw,34px); margin-top: 12px; }
.section-head p { color: var(--mud); margin-top: 14px; font-size: 15.5px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.about-strip { position: relative; background: linear-gradient(135deg, var(--mist-2), #ffe1a8); padding: clamp(44px,8vw,64px) 0; }
.about-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 40px; }
.about-col:hover { transform: translateY(-6px); }
.about-col { transition: transform .25s; }
.about-col .num { font-family: "IBM Plex Mono"; color: var(--river); font-size: 13px; margin-bottom: 10px; font-weight: 600; }
.about-col h3 { font-size: 19px; margin-bottom: 8px; }
.about-col p { color: var(--mud); font-size: 14.5px; }

.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.package-card { background: #fff; border: 2px solid transparent; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(16,185,129,.1); transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.package-card:hover { transform: translateY(-8px) rotate(-.3deg); box-shadow: 0 18px 34px rgba(34,197,94,.22); border-color: var(--gold); }
.package-visual { position: relative; height: 190px; overflow: hidden; }
.package-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.package-card:hover .package-visual img { transform: scale(1.08); }
.package-visual .marker { position: absolute; top: 14px; left: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--moss); color: var(--mist); font-family: "IBM Plex Mono"; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 8px rgba(0,0,0,.25); }
.package-visual .duration { position: absolute; right: 14px; bottom: 14px; font-family: "IBM Plex Mono"; color: var(--ink); font-size: 12px; font-weight: 600; background: var(--gold); padding: 5px 10px; border-radius: 20px; }
.package-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.package-tag { font-family: "IBM Plex Mono"; font-size: 11px; color: var(--river); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; display: block; font-weight: 600; }
.package-body h3 { font-size: 19px; margin-bottom: 8px; }
.package-body p { color: var(--mud); font-size: 13.5px; margin-bottom: 16px; flex: 1; }
.package-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed rgba(92,68,37,.25); padding-top: 16px; }
.price { font-family: "IBM Plex Mono"; font-size: 18px; color: var(--mangrove); font-weight: 600; }
.price span { font-size: 11px; color: var(--mud); font-weight: 400; }
.btn-view { background: var(--mangrove); color: var(--mist); border: none; padding: 9px 16px; font-size: 12.5px; border-radius: 20px; cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block; }
.btn-view:hover { background: var(--moss); }

.gallery { background: linear-gradient(135deg, #e9fbf3, #fff3d6); }
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 14px; }
.gallery-grid button { position: relative; border-radius: 14px; overflow: hidden; grid-row: span 2; border: none; padding: 0; cursor: pointer; }
.gallery-grid button:nth-child(2), .gallery-grid button:nth-child(3) { grid-row: span 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-grid button:hover img { transform: scale(1.08) rotate(.5deg); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; background: linear-gradient(180deg, transparent, rgba(11,60,45,.9)); color: var(--mist); font-size: 12.5px; font-family: "IBM Plex Mono"; text-align: left; }

.wildlife { background: linear-gradient(160deg, var(--mangrove), #0fa968); color: var(--mist); }
.wildlife .section-head p { color: rgba(255,249,236,.7); }
.wgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2px; background: rgba(255,214,10,.25); border: 1px solid rgba(255,214,10,.25); border-radius: 14px; overflow: hidden; }
.wcard { background: var(--mangrove); display: flex; flex-direction: column; transition: background .25s; }
.wcard:hover { background: #16c285; }
.wcard-img { height: 150px; overflow: hidden; }
.wcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wcard:hover .wcard-img img { transform: scale(1.1); }
.wcard-body { padding: 22px; }
.wcard h4 { font-family: "Fraunces"; font-size: 16px; margin-bottom: 8px; font-weight: 600; color: var(--gold); }
.wcard p { font-size: 13px; color: rgba(255,249,236,.72); }

.reviews-slider { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform .4s ease; }
.review-slide { min-width: 100%; padding: 4px; }
.review-card { background: #fff; border: 2px solid var(--mist-2); border-radius: 16px; padding: clamp(28px,5vw,44px); max-width: 680px; margin: 0 auto; text-align: center; }
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.review-quote { font-family: "Fraunces"; font-size: clamp(17px,2.4vw,21px); line-height: 1.5; color: var(--ink); margin-bottom: 22px; }
.review-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--river), var(--mangrove)); color: var(--mist); display: flex; align-items: center; justify-content: center; font-family: "IBM Plex Mono"; font-size: 13px; font-weight: 600; }
.review-name { font-size: 14px; font-weight: 600; }
.review-trip { font-size: 12.5px; color: var(--mud); font-family: "IBM Plex Mono"; }
.review-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.review-arrow { background: var(--mist-2); border: 2px solid var(--gold); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .15s, transform .15s; }
.review-arrow:hover { background: var(--gold); transform: scale(1.1); }
.review-dots { display: flex; gap: 8px; }
.review-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(92,68,37,.3); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.review-dot.active { background: var(--moss); transform: scale(1.3); }

.booking { background: linear-gradient(135deg, #fff3d6, #e9fbf3); }
.booking-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(32px,5vw,56px); align-items: start; }
.booking-copy h2 { font-size: clamp(24px,4vw,32px); margin-top: 12px; margin-bottom: 16px; }
.booking-copy p { color: var(--mud); font-size: 15px; margin-bottom: 24px; }
.booking-note { border-left: 4px solid var(--moss); padding: 14px 18px; background: rgba(255,214,10,.18); font-size: 13.5px; color: var(--mud); border-radius: 0 10px 10px 0; }
.form-card { background: #fff; border: 2px solid var(--mist-2); border-radius: 16px; padding: clamp(24px,4vw,32px); box-shadow: 0 6px 20px rgba(16,185,129,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; color: var(--mud); font-family: "IBM Plex Mono"; }
.field input, .field select, .field textarea { border: 1.5px solid rgba(92,68,37,.3); border-radius: 8px; padding: 11px 12px; font-family: "Work Sans"; font-size: 14px; background: var(--mist); color: var(--ink); width: 100%; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--river); box-shadow: 0 0 0 3px rgba(0,180,216,.18); }
.field-error { color: #c0392b; font-size: 12px; display: none; }
.btn-submit { width: 100%; background: linear-gradient(120deg, var(--moss), var(--river)); color: var(--mist); border: none; padding: 15px; font-size: 14.5px; font-weight: 700; border-radius: 30px; cursor: pointer; margin-top: 8px; transition: transform .15s, box-shadow .2s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(20,184,166,.35); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

footer { background: var(--ink); color: rgba(240,253,244,.68); padding: clamp(48px,7vw,64px) 0 0; font-size: 13.5px; position: relative; overflow: hidden; border-top: 3px solid var(--gold); }
.footer-grid { position: relative; display: flex; justify-content: space-between; gap: clamp(32px,6vw,64px); flex-wrap: wrap; padding-bottom: clamp(32px,5vw,44px); }
.footer-brand { max-width: 340px; flex: 1 1 260px; }
.footer-brand .brand { color: var(--mist); margin-bottom: 14px; }
.footer-tag { font-size: 13px; color: rgba(240,253,244,.55); margin-bottom: 18px; line-height: 1.6; }
.footer-addr { display: flex; gap: 10px; margin-bottom: 10px; font-size: 13px; color: rgba(240,253,244,.75); line-height: 1.55; }
.footer-addr svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--leaf); }
.footer-domain { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-family: "IBM Plex Mono"; font-size: 12.5px; color: var(--gold); text-decoration: none; border: 1px solid rgba(255,214,10,.35); padding: 7px 14px; border-radius: 20px; background: rgba(255,214,10,.08); transition: background .2s, transform .15s; }
.footer-domain:hover { background: rgba(255,214,10,.18); transform: translateY(-2px); }
.footer-links { display: flex; gap: clamp(28px,5vw,56px); flex-wrap: wrap; flex: 2 1 360px; justify-content: flex-end; }
.footer-col h5 { font-family: "IBM Plex Mono"; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--leaf); margin-bottom: 14px; font-weight: 600; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 130px; }
.footer-col a { color: rgba(240,253,244,.72); text-decoration: none; font-size: 13.5px; transition: color .15s, transform .15s; display: inline-block; width: fit-content; }
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom { position: relative; border-top: 1px solid rgba(240,253,244,.12); padding: 20px clamp(20px,4vw,32px); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(240,253,244,.5); max-width: 1140px; margin: 0 auto; }

.overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(9,26,20,.88); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.overlay-close { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,214,10,.16); border: 1px solid var(--gold); color: var(--mist); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.overlay-close:hover { background: rgba(255,214,10,.3); }
#lightbox img { max-width: min(90vw,1100px); max-height: 82vh; object-fit: contain; border-radius: 12px; }
#lightbox figcaption { color: var(--mist); text-align: center; margin-top: 14px; font-family: "IBM Plex Mono"; font-size: 13px; }

.food { background: linear-gradient(135deg, var(--mist-2), #dcebc5); }
.food-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.food-card { background: #fff; border: 1px solid rgba(77,124,15,.15); border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; box-shadow: 0 2px 8px rgba(16,185,129,.08); }
.food-card:hover { transform: translateY(-6px); box-shadow: 0 16px 28px rgba(16,185,129,.18); }
.food-img { height: 150px; overflow: hidden; }
.food-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.food-card:hover .food-img img { transform: scale(1.08); }
.food-body { padding: 18px; }
.food-tag { font-family: "IBM Plex Mono"; font-size: 10.5px; color: var(--river); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.food-body h4 { font-family: "Fraunces"; font-size: 16px; margin: 7px 0 6px; }
.food-body p { color: var(--mud); font-size: 12.8px; }

.pkg-modal-card, .book-modal-card { background: var(--mist); border-radius: 18px; max-width: 820px; width: 100%; max-height: 88vh; overflow-y: auto; }
.pkg-modal-img { height: 260px; } .pkg-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-modal-body { padding: clamp(24px,4vw,40px); }
.pkg-modal-body h2 { font-size: clamp(24px,3.4vw,30px); margin: 10px 0 14px; }
.pkg-modal-body > p { color: var(--mud); font-size: 15px; margin-bottom: 22px; }
.pkg-itinerary { list-style: none; margin-bottom: 24px; }
.pkg-itinerary li { display: flex; gap: 12px; padding: 10px 0; border-top: 1px dashed rgba(92,68,37,.25); font-size: 14px; }
.pkg-itinerary li:first-child { border-top: none; }
.pkg-itinerary .day { font-family: "IBM Plex Mono"; color: var(--moss); flex-shrink: 0; width: 56px; font-weight: 600; }
.pkg-modal-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(92,68,37,.2); padding-top: 22px; }
.success-box { display: none; text-align: center; padding: 20px 0; }
.success-box.show { display: block; }
.success-box .tick { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--leaf), var(--river)); color: var(--mist); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; }

.bread { font-family: "IBM Plex Mono"; font-size: 12px; color: rgba(255,249,236,.75); margin-top: 6px; }
.bread a { color: var(--gold); text-decoration: none; }

.croc-cursor { position: fixed; top: 0; left: 0; width: 120px; height: 80px; background-image: url("/assets/img/crocodile.png"); background-size: contain; background-repeat: no-repeat; background-position: center; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); will-change: transform; filter: drop-shadow(0 3px 6px rgba(0,0,0,.35)); transition: transform .06s linear; opacity: 0; }
@media (max-width: 760px), (hover: none) { .croc-cursor { display: none; } body { cursor: auto; } button { cursor: pointer; } }

@media (max-width: 900px) {
  .food-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-grid button { grid-row: span 1 !important; }
  .package-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .navlinks { position: fixed; top: 68px; left: 0; right: 0; background: var(--mangrove); flex-direction: column; padding: 20px clamp(20px,4vw,32px); gap: 18px; transform: translateY(-140%); transition: transform .25s; border-bottom: 2px solid var(--gold); z-index: 90;}
  #navcheck:checked ~ .wrap .navlinks { transform: translateY(0); }
  .navtoggle { display: flex; }
  .btn-nav { display: none; }
  .about-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .food-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { min-height: 0; } .hero-inner { padding: 56px 0 44px; }
  .hero h1 { font-size: clamp(30px,9vw,40px); margin-bottom: 16px; }
  .hero p { font-size: 15px; max-width: 100%; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px 20px; margin-top: 32px; padding-top: 18px; max-width: 100%; }
  .stat-num { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ===== Honey shop ===== */
.honey-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.honey-card { background: #fff; border: 2px solid transparent; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(16,185,129,.1); transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.honey-card:hover { transform: translateY(-8px); box-shadow: 0 18px 34px rgba(34,197,94,.22); border-color: var(--gold); }
.honey-visual { height: 190px; overflow: hidden; }
.honey-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.honey-card:hover .honey-visual img { transform: scale(1.08); }
.honey-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.honey-body h3 { font-size: 19px; margin-bottom: 6px; }
.honey-unit { font-family: "IBM Plex Mono"; font-size: 11.5px; color: var(--river); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.honey-body p { color: var(--mud); font-size: 13.5px; margin-bottom: 16px; flex: 1; }
.stock-pill { display: inline-block; font-size: 11px; font-family: "IBM Plex Mono"; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
.stock-in { background: #dcfce7; color: #166534; }
.stock-out { background: #fee2e2; color: #991b1b; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.qty-row input { width: 70px; text-align: center; }
.badge-approved { background: #dbeafe; color: #1e40af; }
.badge-shipped { background: #ede9fe; color: #5b21b6; }
.badge-completed { background: #dcfce7; color: #166534; }

/* ===== Order tracking ===== */
.order-card { background: #fff; border: 2px solid var(--mist-2); border-radius: 14px; padding: 22px; margin-bottom: 16px; }
.order-card-head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.order-card-head h4 { font-family: "Fraunces"; font-size: 17px; }
.order-meta { font-size: 12.5px; color: var(--mud); font-family: "IBM Plex Mono"; }
.stepper { display: flex; justify-content: space-between; margin-top: 22px; position: relative; }
.stepper::before { content: ""; position: absolute; top: 9px; left: 6%; right: 6%; height: 2px; background: #e5e7eb; z-index: 0; }
.step { position: relative; z-index: 1; flex: 1; text-align: center; }
.step-dot { width: 18px; height: 18px; border-radius: 50%; background: #e5e7eb; margin: 0 auto 6px; border: 3px solid #fff; box-shadow: 0 0 0 1px #e5e7eb; }
.step.done .step-dot { background: var(--moss); box-shadow: 0 0 0 1px var(--moss); }
.step.current .step-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(255,214,10,.28); }
.step-label { font-size: 10.5px; font-family: "IBM Plex Mono"; color: #999; text-transform: uppercase; letter-spacing: .03em; }
.step.done .step-label, .step.current .step-label { color: var(--ink); font-weight: 600; }
.order-cancelled-pill { display: inline-block; background: #fee2e2; color: #991b1b; font-size: 12px; font-family: "IBM Plex Mono"; padding: 5px 12px; border-radius: 20px; margin-top: 14px; }
.order-tracking-num { margin-top: 12px; font-size: 13px; color: var(--mud); }

/* ===== Admin panel ===== */
.admin-body { cursor: auto; background: #f4f7f5; }
.admin-body button { cursor: pointer; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 230px; background: var(--ink); color: var(--mist); flex-shrink: 0; padding: 20px 0; }
.admin-sidebar .brand { padding: 0 20px 20px; font-size: 16px; }
.admin-sidebar a { display: block; padding: 11px 20px; color: rgba(240,253,244,.75); text-decoration: none; font-size: 14px; border-left: 3px solid transparent; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.06); color: var(--gold); border-left-color: var(--gold); }
.admin-main { flex: 1; padding: 28px clamp(18px,3vw,36px);  }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.admin-topbar h1 { font-family: "Work Sans"; font-size: 22px; font-weight: 700; }
.admin-card { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 20px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; margin-bottom: 24px; }
.admin-stat { background: #fff; border-radius: 12px; padding: 18px 20px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.admin-stat .n { font-size: 26px; font-weight: 700; color: var(--moss); }
.admin-stat .l { font-size: 12.5px; color: #666; margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #eee; }
.admin-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: #777; }
.admin-table tr:hover td { background: #fafdfb; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 8px; border: none; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; }
.btn-green { background: var(--moss); color: #fff; }
.btn-red { background: #dc2626; color: #fff; }
.btn-gray { background: #e5e7eb; color: #333; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-published, .badge-new { background: #dcfce7; color: #166534; }
.badge-draft, .badge-pending { background: #fef9c3; color: #854d0e; }
.badge-confirmed { background: #dbeafe; color: #1e40af; }
.badge-cancelled, .badge-rejected { background: #fee2e2; color: #991b1b; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--ink), var(--moss)); }
.admin-login-card { background: #fff; border-radius: 16px; padding: 40px; width: 380px; max-width: 92vw; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.toast { position: fixed; top: 20px; right: 20px; background: var(--ink); color: #fff; padding: 14px 20px; border-radius: 10px; font-size: 13.5px; z-index: 5000; box-shadow: 0 8px 24px rgba(0,0,0,.3); opacity: 0; transform: translateY(-10px); transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #b91c1c; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000; display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 40px 16px; }
.modal-backdrop.open { display: flex; }
.modal-box { background: #fff; border-radius: 14px; width: 100%; max-width: 640px; padding: 26px; }
.modal-box h3 { margin-bottom: 16px; }
.admin-field { margin-bottom: 14px; }
.admin-field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 5px; color: #444; }
.admin-field input, .admin-field select, .admin-field textarea { width: 100%; padding: 9px 11px; border: 1px solid #d5d5d5; border-radius: 7px; font-size: 14px; font-family: inherit; }
.admin-field textarea { min-height: 80px; resize: vertical; }
.itin-row { display: flex; gap: 8px; margin-bottom: 8px; }
.itin-row input:first-child { width: 90px; flex-shrink: 0; }
