:root {
  --river: #0f5f6f;
  --river-dark: #083b45;
  --leaf: #497f48;
  --leaf-soft: #dfeadf;
  --wood: #8b5e35;
  --wood-dark: #5f3d22;
  --sand: #f6f2e9;
  --cream: #fffdf7;
  --ink: #17211d;
  --muted: #60716b;
  --line: rgba(23, 33, 29, .13);
  --shadow: 0 20px 50px rgba(18, 46, 42, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 6vw, 5.8rem); max-width: 980px; }
h2 { font-size: clamp(1.85rem, 4vw, 3.2rem); }
h3 { font-size: 1.2rem; }

.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--river-dark);
  color: white;
  padding: .7rem 1rem;
  z-index: 20;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(140deg, var(--river), var(--leaf));
  font-weight: 800;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, .15);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  padding: .62rem .8rem;
  border-radius: 999px;
  color: #31423b;
  font-weight: 650;
  font-size: .92rem;
}
.site-nav a:hover, .site-nav a.active { background: var(--leaf-soft); color: var(--river-dark); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 5px auto; }

.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, #f9f7ee 0%, #eef5ef 100%); }
.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 37, 39, .9) 0%, rgba(7, 37, 39, .72) 46%, rgba(7, 37, 39, .22) 100%),
    url("../images/gear-flatlay.png");
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(5, 32, 35, .42), transparent);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p, .page-hero .eyebrow { color: rgba(255, 255, 255, .82); }
.page-hero-tackle {
  background:
    linear-gradient(90deg, rgba(7, 37, 39, .9) 0%, rgba(7, 37, 39, .65) 50%, rgba(7, 37, 39, .18) 100%),
    url("../images/tackle-display.png");
  background-size: cover;
  background-position: center;
}
.page-hero-water {
  background:
    linear-gradient(90deg, rgba(7, 37, 39, .92) 0%, rgba(7, 37, 39, .66) 48%, rgba(7, 37, 39, .18) 100%),
    url("../images/fishing-gear-hero.png");
  background-size: cover;
  background-position: center;
}
.section-river {
  color: white;
  background:
    linear-gradient(rgba(8, 59, 69, .88), rgba(8, 59, 69, .84)),
    url("../images/tackle-display.png");
  background-size: cover;
  background-position: center;
}
.section-river p, .section-river .eyebrow { color: rgba(255, 255, 255, .78); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
  color: var(--river);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 720px; }
.button-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--river); color: white; }
.btn-secondary { background: white; color: var(--river-dark); border-color: var(--line); }
.btn-ghost { border-color: rgba(255, 255, 255, .4); color: white; }

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: end;
  padding: 80px 0 56px;
  color: white;
  background:
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(90deg, rgba(5, 32, 35, .94) 0%, rgba(5, 32, 35, .72) 38%, rgba(5, 32, 35, .2) 78%),
    url("../images/fishing-gear-hero.png");
  background-size: cover;
  background-position: center;
}
.hero h1 {
  max-width: 760px;
  text-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}
.hero .lead { color: rgba(255, 255, 255, .84); }
.hero-panel { width: 100%; }
.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  max-width: 900px;
}
.hero-strip div, .stat-card {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}
.hero-strip strong, .stat-card strong { display: block; font-size: 1.05rem; color: white; }
.hero-strip span, .stat-card span { color: rgba(255, 255, 255, .78); font-size: .92rem; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-head p { max-width: 620px; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.content-card { padding: 1.4rem; }
.product-card {
  position: relative;
  min-height: 365px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(15, 95, 111, .08), rgba(73, 127, 72, .13)),
    #fff;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card h2, .product-card h3 {
  font-size: 1.18rem;
  margin-bottom: .55rem;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 94, 53, .24), transparent 68%);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 95, 111, .35);
  box-shadow: 0 26px 64px rgba(15, 95, 111, .18);
}
.product-thumb {
  height: 118px;
  margin: -.1rem -.1rem .9rem;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(7, 37, 39, .02), rgba(7, 37, 39, .16)),
    url("../images/gear-flatlay.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(23, 33, 29, .08);
}
.product-photo {
  height: 148px;
  margin: -.1rem -.1rem .9rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, .08);
  background: var(--leaf-soft);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-photo img { transform: scale(1.06); }
.thumb-rod { background-position: left center; }
.thumb-rods { background-position: left center; }
.thumb-reel { background-position: 18% center; }
.thumb-reels { background-position: 18% center; }
.thumb-line { background-position: 35% center; }
.thumb-lines { background-position: 35% center; }
.thumb-hook { background-position: 55% center; }
.thumb-hooks { background-position: 55% center; }
.thumb-lure { background-position: 67% center; }
.thumb-accessories, .thumb-net, .thumb-accessory, .thumb-tool { background-position: right center; }
.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--wood), var(--river));
  font-weight: 850;
  font-size: 1.4rem;
}
.tag {
  display: inline-flex;
  width: fit-content;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--river-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.price { font-weight: 850; color: var(--wood-dark); font-size: 1.12rem; }

.photo-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.25rem; align-items: stretch; }
.photo-frame {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, var(--leaf-soft), #d5e6ec);
  box-shadow: var(--shadow);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame.missing-photo::after {
  content: "Add supplied Maimun Fishing Tools photo";
  position: absolute;
  inset: auto 1rem 1rem;
  padding: .7rem .9rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  color: var(--river-dark);
  font-weight: 800;
}
.mini-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.mini-list li {
  padding: .8rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.mini-list strong { color: var(--ink); }

.article-card h3 a:hover, .text-link:hover { color: var(--river); }
.article-meta { color: var(--wood-dark); font-weight: 750; font-size: .9rem; margin-bottom: .5rem; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.image-band {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 37, 39, .74), rgba(7, 37, 39, .08)),
    url("../images/tackle-display.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: 2rem;
  color: white;
  box-shadow: var(--shadow);
}
.image-band p { color: rgba(255, 255, 255, .82); max-width: 560px; }
.info-band {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--river-dark), var(--leaf));
  color: white;
}
.info-band p { color: rgba(255, 255, 255, .78); }

.form {
  display: grid;
  gap: 1rem;
}
.field label { display: block; font-weight: 750; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem .9rem;
  font: inherit;
  background: white;
}
.field textarea { min-height: 150px; resize: vertical; }
.notice {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.notice.success { background: #e7f5ec; color: #1d6134; }
.notice.error { background: #fff0e8; color: #8a3d18; }
.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.site-footer {
  background: #10251f;
  color: white;
  padding: 58px 0 24px;
}
.site-footer p, .site-footer a, .site-footer small { color: rgba(255, 255, 255, .72); }
.site-footer a { display: block; margin: .42rem 0; }
.site-footer a:hover { color: white; }
.site-footer h2 { font-size: 1rem; margin-bottom: .8rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr .8fr; gap: 2rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .section-head, .split, .photo-grid { grid-template-columns: 1fr; display: grid; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .hero { min-height: 760px; padding-top: 64px; }
  .hero-strip, .grid-4, .grid-3, .grid-2, .footer-grid, .site-nav.open { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .button-row { flex-direction: column; }
  .btn { width: 100%; }
}
