/* Brandon Phillips Alaska Sportfishing — demo site
   Aesthetic: expedition-outfitter editorial. Silt paper, spruce ink,
   glacier teal, coho-salmon accent. */

:root {
  --paper:   #f3eee4;
  --paper-2: #ece4d4;
  --ink:     #1b231f;
  --ink-soft:#42514a;
  --teal:    #2f6b6e;
  --teal-dk: #234f52;
  --coho:    #d2603a;
  --coho-dk: #b44d2b;
  --line:    #cdc2a9;
  --shadow:  0 18px 40px -20px rgba(27,35,31,.55);
  --maxw:    1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Newsreader", Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/></svg>");
}

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

h1, h2, h3, .display {
  font-family: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

a { color: inherit; }

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

.eyebrow {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coho-dk);
  font-size: .85rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid var(--ink);
  background: var(--coho);
  color: var(--paper);
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); background: var(--coho-dk); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:focus-visible, .nav a:focus-visible, .field input:focus-visible,
.field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--coho); outline-offset: 3px;
}
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--teal); color: var(--paper); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { text-decoration: none; line-height: 1; }
.brand b {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 1.18rem;
  letter-spacing: -.01em;
}
.brand span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--teal);
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a.lnk {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav a.lnk:hover, .nav a.lnk[aria-current="page"] { border-color: var(--coho); }
.nav .btn { padding: 11px 20px; box-shadow: 3px 3px 0 var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .66;
}
.hero--home img.bg { object-position: center 16%; opacity: .72; }
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,35,31,.5) 0%, rgba(27,35,31,.4) 38%, rgba(27,35,31,.82) 92%);
}
.hero .eyebrow, .hero h1, .hero p.lead { text-shadow: 0 2px 14px rgba(15,20,17,.65); }
.hero .eyebrow { color: #f3d3bd; }
.hero .wrap { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 70px; }
.hero--home .wrap { padding-top: 160px; padding-bottom: 88px; }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.9rem, 7.5vw, 6rem);
  max-width: 14ch;
}
.hero:not(.hero--home) h1 { font-size: clamp(2.3rem, 5.2vw, 4.3rem); }
.hero h1 em { color: var(--coho); font-style: normal; }
.hero p.lead {
  color: #e7dfce; max-width: 46ch;
  margin-top: 22px; font-size: 1.22rem;
}
.hero .cta-row { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn--ghost { color: var(--paper); border-color: var(--paper); box-shadow: 4px 4px 0 rgba(0,0,0,.5); }

/* fade-up load animation */
.fade { opacity: 0; transform: translateY(22px); animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .2s; }
.d3 { animation-delay: .32s; } .d4 { animation-delay: .44s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---------- generic section ---------- */
.section { padding: 84px 0; position: relative; z-index: 2; }
.section--teal { background: var(--teal); color: var(--paper); }
.section--ink  { background: var(--ink);  color: var(--paper); }
.section--alt  { background: var(--paper-2); }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-top: 10px; }
.section-head p { margin-top: 14px; color: var(--ink-soft); }
.section--teal .section-head p, .section--ink .section-head p { color: #d8e6e2; }
.section--teal .eyebrow, .section--ink .eyebrow { color: #f0c2a8; }

/* intro split */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 54px; align-items: center;
}
.split img { border: 1.5px solid var(--ink); box-shadow: var(--shadow); border-radius: 3px; }
.split h2 { font-size: clamp(2rem,4.2vw,3rem); }
.split p { margin-top: 16px; }
.split-cta { margin-top: 24px; }

/* trip cards */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 46px; }
.card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img { height: 210px; width: 100%; object-fit: cover; border-bottom: 1.5px solid var(--ink); }
.card .body { padding: 22px 22px 26px; flex: 1; }
.card .tag {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.card h3 { font-size: 1.5rem; margin: 6px 0 8px; }
.card p { font-size: .98rem; color: var(--ink-soft); }
.card .season {
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--coho-dk); font-weight: 600;
}

/* gallery strip */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 36px; }
.gallery img {
  height: 220px; width: 100%; object-fit: cover;
  border: 1.5px solid var(--ink); border-radius: 3px;
  filter: saturate(1.05);
  transition: transform .25s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* feature list */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; margin-top: 44px; }
.feature .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 2.4rem; color: var(--coho);
  line-height: 1;
}
.feature h3 { font-size: 1.3rem; margin: 10px 0 6px; }
.feature p { font-size: .98rem; color: var(--ink-soft); }
.section--ink .feature p { color: #cdd8d3; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.1rem,5vw,3.6rem); max-width: 18ch; margin: 0 auto; }
.cta-band p { margin: 16px auto 30px; max-width: 44ch; color: #eef5f3; }

/* ---------- about ---------- */
.creds { list-style: none; margin-top: 26px; }
.creds li {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: baseline;
}
.creds li::before {
  content: "→"; color: var(--coho); font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}
.creds li b { font-family: "Bricolage Grotesque", sans-serif; }

.prose p { margin-top: 16px; }
.prose p.big { font-size: 1.32rem; line-height: 1.5; }
.prose .sig {
  margin-top: 26px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 1.1rem;
}
.prose .sig span { display: block; font-weight: 400; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 54px; }
.form-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600; font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: "Newsreader", serif; font-size: 1rem;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: 2px; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,107,110,.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card .btn { width: 100%; text-align: center; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }
.form-ok {
  display: none; margin-top: 18px; padding: 16px;
  background: var(--teal); color: var(--paper); border-radius: 3px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600;
}

.info-block { margin-bottom: 30px; }
.info-block .eyebrow { display: block; margin-bottom: 6px; }
.info-block a, .info-block p { font-size: 1.18rem; text-decoration: none; }
.info-block a:hover { color: var(--coho-dk); }

/* ---------- footer ---------- */
.site-foot {
  background: var(--ink); color: var(--paper);
  border-top: 1.5px solid var(--ink);
  padding: 54px 0 30px; position: relative; z-index: 2;
}
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand b {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 1.3rem; display: block;
}
.foot-brand p { color: #aebbb4; margin-top: 8px; max-width: 32ch; font-size: .96rem; }
.foot-nav { display: flex; gap: 26px; }
.foot-nav a {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--paper);
}
.foot-nav a:hover { color: var(--coho); }
.foot-base {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid #38433d;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: #8c9b93;
}

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards, .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .nav { gap: 14px; }
  .nav a.lnk { font-size: .68rem; letter-spacing: .07em; }
  .nav .btn { padding: 11px 14px; font-size: .72rem; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .card img { height: 168px; }
}
@media (max-width: 560px) {
  .nav a.lnk { display: none; }
  .brand span { display: none; }
  .hero--home .wrap { padding-top: 104px; padding-bottom: 58px; }
}
