/* ============================================================
   Chopper's Hatchet House - Conversion Landing Page
   Styles for index.html
   Light theme. Brand colors sampled from the logo.
   Note: no em dashes are used anywhere in this project.
   ============================================================ */

:root {
  /* Brand palette (sampled from logo) */
  --blue: #0153A4;
  --blue-dark: #00417F;
  --blue-soft: #E8F0FA;
  --red: #D71920;
  --red-dark: #B0141A;
  --red-soft: #FCEBEC;
  --amber: #F5A623;

  /* Light theme surfaces */
  --paper: #FFFFFF;
  --surface: #F6F7F9;
  --surface-2: #EEF1F5;
  --ink: #14171C;
  --ink-2: #3A424E;
  --muted: #626C7A;
  --line: #E4E8EE;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20, 23, 28, 0.06), 0 2px 6px rgba(20, 23, 28, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 23, 28, 0.08), 0 2px 6px rgba(20, 23, 28, 0.05);
  --shadow-lg: 0 20px 45px rgba(1, 83, 164, 0.14), 0 8px 20px rgba(20, 23, 28, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1160px;

  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow.on-dark { color: #9CC4EE; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(215, 25, 32, 0.28);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(215, 25, 32, 0.34); }
.btn-secondary {
  background: var(--paper);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 19px 38px; font-size: 18px; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 16px;
  font-weight: 500;
}
.topbar strong { color: var(--amber); font-weight: 700; }
.topbar .sep { opacity: .4; margin: 0 10px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .15s; }
.nav a:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 16px; }
.header-phone svg { width: 17px; height: 17px; color: var(--red); }
.header-phone span.label { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); line-height: 1; margin-bottom: 2px; }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(1,83,164,0.10), transparent 60%),
    radial-gradient(760px 460px at 10% 110%, rgba(215,25,32,0.07), transparent 55%),
    var(--paper);
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 54px; align-items: center; }
.hero-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.rating-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 999px; padding: 7px 15px 7px 12px; }
.rating-badge .stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.rating-badge b { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.rating-badge span { font-size: 13px; color: var(--muted); }
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--blue); background: var(--blue-soft); border-radius: 999px; padding: 7px 14px; letter-spacing: .01em; }

.hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 900; letter-spacing: -0.02em; }
.hero h1 .hl { color: var(--red); }
.hero h1 .hl-blue { color: var(--blue); }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); margin: 22px 0 30px; max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.hero-note svg { width: 17px; height: 17px; color: var(--blue); flex: none; }

.hero-usps { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-usps .u { display: flex; align-items: flex-start; gap: 11px; }
.hero-usps .u svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.hero-usps .u b { font-family: var(--font-display); font-weight: 800; display: block; font-size: 15.5px; }
.hero-usps .u span { font-size: 13.5px; color: var(--muted); }

/* Hero visual (bullseye motif card) */
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 12px; }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 14px; }

/* Experience / gallery */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.exp-tile { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper); }
.exp-photo {
  aspect-ratio: 4 / 3; position: relative; display: grid; place-items: center; text-align: center;
  background: linear-gradient(155deg, #103a6b, #0153A4);
  color: #dbe8f7;
}
.exp-photo.v2 { background: linear-gradient(155deg, #0153A4, #0a2c52); }
.exp-photo.v3 { background: linear-gradient(155deg, #8f1218, #D71920); color: #fbe2e3; }
.exp-photo .ph-label { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.24); padding: 5px 10px; border-radius: 999px; }
.exp-photo svg { width: 52px; height: 52px; opacity: .92; }
.exp-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp-body { padding: 18px 20px 22px; }
.exp-body h3 { font-size: 18px; margin-bottom: 6px; }
.exp-body p { font-size: 14.5px; color: var(--muted); }

/* Occasions */
.occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.occ {
  display: flex; align-items: center; gap: 15px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: transform .16s, box-shadow .2s;
}
.occ:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.occ .oic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--blue-soft); color: var(--blue); }
.occ.red .oic { background: var(--red-soft); color: var(--red); }
.occ .oic svg { width: 24px; height: 24px; }
.occ b { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; display: block; }
.occ span { font-size: 13.5px; color: var(--muted); }

/* Social proof */
.proof-band { background: linear-gradient(160deg, #0a2c52, #01305f); color: #fff; }
.proof-head { text-align: center; margin-bottom: 44px; }
.proof-head .stars { color: var(--amber); font-size: 26px; letter-spacing: 3px; }
.proof-head h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin: 14px 0 8px; }
.proof-head p { color: #b8d0ea; font-size: 17px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 26px 24px; }
.review .stars { color: var(--amber); font-size: 15px; letter-spacing: 1.5px; }
.review p { margin: 14px 0 18px; color: #e7eefa; font-size: 15.5px; line-height: 1.65; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; flex: none; }
.review .who b { font-size: 15px; display: block; }
.review .who span { font-size: 13px; color: #9fbde0; }

/* Details / logistics */
.details-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: start; }
.know-list { display: grid; gap: 14px; margin-top: 8px; }
.know { display: flex; gap: 14px; align-items: flex-start; }
.know .k-ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); }
.know .k-ic svg { width: 21px; height: 21px; }
.know b { font-family: var(--font-display); font-weight: 800; font-size: 15.5px; }
.know p { font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.info-card .ic-head { background: var(--ink); color: #fff; padding: 22px 26px; }
.info-card .ic-head h3 { color: #fff; font-size: 21px; }
.info-card .ic-head p { color: #b9c2cf; font-size: 14px; margin-top: 4px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 17px 26px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }
.info-row b { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.info-row .v { font-size: 15.5px; color: var(--ink); font-weight: 500; }
.hours-line { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; padding: 3px 0; }
.hours-line span:first-child { color: var(--muted); }
.hours-line span:last-child { font-weight: 600; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 800; font-size: 17.5px; color: var(--ink); }
.faq-q .chev { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; transition: transform .25s ease, background .2s; }
.faq-q .chev svg { width: 18px; height: 18px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--red); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* CTA band */
.cta-band { background: linear-gradient(155deg, #D71920 0%, #a5131a 100%); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.10) 0 1.5px, transparent 1.5px); background-size: 30px 30px; opacity: .35; }
.cta-band .wrap { position: relative; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); }
.cta-band p { color: #ffe1e2; font-size: 19px; margin: 16px auto 30px; max-width: 620px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--red); box-shadow: 0 10px 26px rgba(0,0,0,0.22); }
.cta-band .btn-primary:hover { background: #fff; color: var(--red-dark); }
.cta-band .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.cta-sub { margin-top: 22px; font-size: 14.5px; color: #ffd9da; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c4ccd7; padding: 58px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 40px; }
.footer .brand img { height: 38px; filter: brightness(0) invert(1); }
.footer p { font-size: 14.5px; color: #97a1af; margin-top: 14px; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer li { margin-bottom: 10px; }
.footer a { color: #b6bfca; font-size: 14.5px; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer .fcontact { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 12px; }
.footer .fcontact svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 2px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background .2s; }
.socials a:hover { background: var(--red); }
.socials svg { width: 18px; height: 18px; }
.iatf-badge { width: 76px; height: auto; margin-top: 20px; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #8a95a3; }
.footer-bottom a { color: #8a95a3; }

/* ============================================================
   Booking section (#book)
   ============================================================ */
.book-hero-copy { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.book-hero-copy .eyebrow { display: block; margin-bottom: 12px; }
.book-hero-copy h2 { font-size: clamp(30px, 4.4vw, 48px); }
.book-hero-copy p { color: var(--ink-2); font-size: 18px; margin: 16px auto 0; }

.embed-shell { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.embed-shell .es-head { display: flex; align-items: center; gap: 12px; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.embed-shell .es-head .dot { width: 40px; height: 40px; border-radius: 11px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.embed-shell .es-head .dot svg { width: 22px; height: 22px; }
.embed-shell .es-head b { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.embed-shell .es-head span { font-size: 13.5px; color: var(--muted); }

#booking-widget .peek-tile-image-description-wrap { background-color: rgba(0, 0, 0, 0.8) !important; }
#booking-widget .peek-tile-image-container-wrap { position: relative; }
#booking-widget .price-badge {
  position: absolute; top: 12px; left: 12px; z-index: 6;
  display: inline-flex; align-items: baseline; gap: 2px;
  background: #FFC91F; color: #161616;
  font-family: var(--font-display); font-weight: 900; font-size: 17px; line-height: 1;
  padding: 8px 12px; border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
#booking-widget .price-badge .pb-unit { font-size: 11px; font-weight: 700; }
#booking-widget .price-badge-contact { font-size: 12.5px; font-weight: 800; }
#booking-widget .peek-primary-button { background-color: var(--red) !important; color: #fff !important; border-color: var(--red) !important; }
#booking-widget .peek-tile:hover .peek-primary-button { background-color: var(--red-dark) !important; border-color: var(--red-dark) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .nav { display: none; }
  .header-phone { display: none; }
  .header-cta .btn { padding: 10px 20px; font-size: 14px; }
  .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line); color: var(--ink); }
  .menu-toggle svg { width: 24px; height: 24px; }
  section { padding: 56px 0; }
  .hero { padding: 40px 0 54px; }
  .exp-grid, .occ-grid, .reviews { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .hero-actions .btn { width: 100%; }
}

/* Mobile nav drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 90; background: rgba(20,23,28,0.5); opacity: 0; pointer-events: none; transition: opacity .2s; }
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav .panel { position: absolute; top: 0; right: 0; width: min(84%, 340px); height: 100%; background: #fff; padding: 26px 24px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .25s ease; }
.mobile-nav.open .panel { transform: translateX(0); }
.mobile-nav .panel a { padding: 14px 6px; font-family: var(--font-display); font-weight: 700; font-size: 18px; border-bottom: 1px solid var(--line); }
.mobile-nav .panel .btn { margin-top: 16px; }
.mobile-nav .m-close { align-self: flex-end; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line); margin-bottom: 8px; }
.mobile-nav .m-close svg { width: 22px; height: 22px; }

/* Reveal on scroll.
   Progressive enhancement: content is fully visible by default and only
   starts hidden when JavaScript is active (html.js). If JS fails or is
   slow, nothing important ever disappears. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
