/* ===== Cooktown Campaign Landing Page ===== */

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

:root {
  --bg:           #FAF7F2;
  --bg-alt:       #F0E9DC;
  --dark:         #1A140D;
  --dark-mid:     #251B11;
  --orange:       #C4561A;
  --orange-deep:  #A8440C;
  --sand:         #D4A870;
  --text:         #2C1F0F;
  --text-muted:   #6B5640;
  --text-light:   #F0E4C8;
  --text-dim:     rgba(212,168,112,0.55);
  --border:       rgba(180,148,94,0.22);
  --border-dark:  rgba(255,255,255,0.09);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --r: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── BUTTONS ─── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}
.btn-full {
  width: 100%;
}

/* ─── SHARED TYPOGRAPHY ─── */

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}

/* ─── HERO ─── */

#hero {
  background:
    linear-gradient(175deg, rgba(20,14,6,0.82) 0%, rgba(36,22,8,0.74) 55%, rgba(48,26,10,0.80) 100%),
    url('images/hero.jpg') center / cover no-repeat;
  color: var(--text-light);
  padding: 72px 20px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(196,86,26,0.18);
  border: 1px solid rgba(196,86,26,0.35);
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}

#hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,228,200,0.78);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 36px;
}

.hero-details li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--sand);
}

.hero-details svg {
  stroke: var(--sand);
  flex-shrink: 0;
}

/* ─── ABOUT FRED ─── */

#about {
  padding: 64px 0;
  background: var(--bg);
}

.about-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-photo {
  width: 96px;
  flex-shrink: 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(44,31,15,0.14);
}

.about-photo img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  object-position: top center;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 2px;
}

.about-cred {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.about-text p:last-child {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── WHY FRED ─── */

#why-fred {
  padding: 64px 0;
  background: var(--bg-alt);
}

/* ─── REASONS TO BOOK ─── */

#reasons {
  padding: 64px 0;
  background: var(--bg);
}

.reasons-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.check {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── URGENCY / WHY BOOK EARLY ─── */

#urgency {
  padding: 64px 0;
  background: var(--bg);
}

.urgency-box {
  background: var(--dark);
  border-radius: 14px;
  padding: 44px 28px;
  text-align: center;
}

.urgency-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.urgency-box p {
  font-size: 0.97rem;
  color: rgba(240,228,200,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FAQ ─── */

#faq {
  padding: 64px 0;
  background: var(--bg-alt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 20px 18px;
  border-top: 1px solid var(--border);
}

.faq-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: 14px;
}

.faq-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── BOOKING / FINAL CTA ─── */

#book {
  padding: 72px 0 80px;
  background: var(--dark-mid);
}

.book-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  text-align: center;
}

.book-sub {
  font-size: 1rem;
  color: rgba(240,228,200,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: center;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--r);
  padding: 16px 20px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.contact-option:hover {
  border-color: rgba(196,86,26,0.5);
  background: rgba(196,86,26,0.07);
}

.contact-option svg {
  stroke: var(--sand);
  flex-shrink: 0;
}

.contact-option strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.contact-option span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(212,168,112,0.35);
  font-size: 0.82rem;
  margin-bottom: 28px;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(212,168,112,0.28);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(196,86,26,0.6);
  background: rgba(255,255,255,0.07);
}

.book-note {
  text-align: center;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.01em;
  margin-top: -4px;
}

.form-legal {
  font-size: 0.75rem;
  color: rgba(212,168,112,0.3);
  line-height: 1.55;
  text-align: center;
}

/* ─── FOOTER ─── */

footer {
  background: var(--dark);
  padding: 44px 20px 36px;
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer-reg {
  font-size: 0.72rem;
  color: rgba(212,168,112,0.35);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--sand);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 0.74rem;
  color: rgba(240,228,200,0.18);
}

/* ─── STICKY MOBILE CTA ─── */

.sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(26,20,13,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.07);
  z-index: 100;
  transition: opacity 0.25s, transform 0.25s;
}

.sticky-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 480px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 560px) {
  .about-photo {
    width: 130px;
  }
  .about-photo img {
    height: 168px;
  }
  .contact-options {
    flex-direction: row;
  }
  .contact-option {
    flex: 1;
  }
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }
  .sticky-cta {
    display: none;
  }
  #hero {
    padding: 100px 20px 100px;
  }
  #about,
  #reasons,
  #urgency,
  #faq {
    padding: 80px 0;
  }
  #book {
    padding: 88px 0 96px;
  }
  .about-photo {
    width: 152px;
  }
  .about-photo img {
    height: 196px;
  }
  .urgency-box {
    padding: 56px 44px;
  }
}
