/* Henry Cowen Fly Fishing — modern site styles */

:root {
  --navy: #0f2438;
  --deep-navy: #0a1826;
  --river: #1c5d6e;
  --river-light: #2e8a9e;
  --gold: #c99a3c;
  --gold-light: #e0b95f;
  --cream: #f7f3ea;
  --off-white: #fbfaf6;
  --ink: #1a2027;
  --gray: #5b6470;
  --border: #e3ddcd;
  --max-width: 1180px;
  --shadow: 0 12px 30px -12px rgba(15, 36, 56, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

a { color: inherit; text-decoration: none; }

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

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

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--deep-navy);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

.brand .name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

.brand .tagline {
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 13px;
  border-radius: 4px;
  color: var(--cream);
  opacity: 0.85;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.main-nav a:hover { opacity: 1; background: rgba(255,255,255,0.08); }

.main-nav a.active {
  opacity: 1;
  background: var(--gold);
  color: var(--deep-navy);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--river) 100%);
  color: var(--off-white);
  padding: 64px 0 72px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.hero p.lede {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.9);
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-figure img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  padding: 13px 26px;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-navy);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(201,154,60,0.35); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ---------- Sections ---------- */

section { padding: 64px 0; }

section.alt { background: var(--cream); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 42px;
}

.section-head .kicker {
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--river-light);
  margin-bottom: 10px;
}

.section-head h2 { font-size: 2rem; }

.section-head p { color: var(--gray); font-size: 1.02rem; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--river);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}

.social-link:hover { background: var(--river-light); transform: translateY(-2px); }

.social-link svg { width: 19px; height: 19px; fill: currentColor; }

/* Feature grid on home */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--river);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }

.feature-card p { color: var(--gray); font-size: 0.96rem; margin: 0; }

/* Book callout */

.book-callout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.book-callout img { border-radius: 6px; box-shadow: var(--shadow); }

.book-callout h3 { font-size: 1.4rem; margin-bottom: 12px; }

.book-callout p { color: var(--gray); }

/* Two column layout (about, guide service) */

.two-col {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.two-col img { border-radius: 10px; box-shadow: var(--shadow); }

.prose p { margin: 0 0 1.15em; color: var(--ink); }

.prose h3 { margin-top: 1.6em; font-size: 1.2rem; }

/* Pricing / guide service cards */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card .species {
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--river-light);
  margin-bottom: 6px;
}

.price-card .fee {
  font-size: 2rem;
  color: var(--navy);
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  margin: 6px 0 10px;
}

.price-card .fee span { font-size: 0.95rem; color: var(--gray); font-weight: 400; }

.price-card ul { margin: 0; padding-left: 18px; color: var(--gray); font-size: 0.95rem; }
.price-card li { margin-bottom: 4px; }

.checklist {
  columns: 2;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  break-inside: avoid;
  color: var(--ink);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--river-light);
  font-weight: 700;
}

.note-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 28px 0;
  color: var(--ink);
  font-size: 0.96rem;
}

/* Flies grid */

.flies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.fly-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fly-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--cream);
  padding: 20px;
}

.fly-card .fly-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fly-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.fly-card p.desc { color: var(--gray); font-size: 0.93rem; margin-bottom: 14px; }

.fly-recipe {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: 6px;
  padding: 12px 14px;
  line-height: 1.7;
  margin-top: auto;
}

.fly-recipe strong { color: var(--river); }

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
}

.testimonial-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card blockquote {
  margin: 0 0 10px;
  font-style: italic;
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial-card cite {
  font-family: "Trebuchet MS", sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--river-light);
}

/* Video/pics */

.media-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.media-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}

.media-card:hover { transform: translateY(-3px); }

.media-card .glyph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--river);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  font-family: "Trebuchet MS", sans-serif;
}

.media-card h3 { margin-bottom: 8px; }

.media-card p { color: var(--gray); font-size: 0.92rem; margin: 0 0 16px; }

/* Media gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 56, 0);
  transition: background 0.2s;
}

.gallery-item:hover .gallery-overlay { background: rgba(15, 36, 56, 0.18); }

.gallery-item .gallery-play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 36, 56, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 34, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 92vw;
  max-height: 88vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 6px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}

/* CTA banner */

.cta-banner {
  background: linear-gradient(160deg, var(--river) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}

.cta-banner h2 { color: #fff; margin-bottom: 10px; }

.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }

.phone-big {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Footer */

.site-footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.7);
  padding: 44px 0 28px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-grid h4 {
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-grid a { display: block; color: rgba(255,255,255,0.7); padding: 3px 0; }
.footer-grid a:hover { color: #fff; }

.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .two-col { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .flies-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .media-links { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .book-callout { grid-template-columns: 1fr; text-align: center; }
  .book-callout img { margin: 0 auto; max-width: 220px; }
  .checklist { columns: 1; }

  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    padding-bottom: 10px;
  }
  .main-nav.open { display: flex; }
  .site-header .wrap { flex-wrap: wrap; }
  .main-nav a { width: 100%; padding: 12px 14px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 2rem; }
  section { padding: 44px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
