/* ============================================================
   BEATON SPORTING — SHARED BRAND / DESIGN SYSTEM (source of truth)
   Used by all three sites: beatonsporting.com (flagship),
   taysalmonguide.com + taysalmonghillie.com (spokes), and any
   future sporting-estate site built from this template.

   Palette: deep pine/river greens · cream paper · burnished copper
   Type: Cormorant Garamond (display) · Inter (body). Mobile-first.

   HOW TO USE: each site's own styles.css = the FULL contents of this
   file, copied verbatim, then a clearly-commented "SITE-SPECIFIC" tail
   that sets its .hero-media background image + any page-unique parts.
   Keep THIS file the one place the tokens/components live.
   ============================================================ */

:root {
  --ink: #14201b;          /* deepest pine */
  --pine: #1d3a33;         /* section dark */
  --river: #2f524a;        /* mid green */
  --paper: #f6f2e9;        /* cream */
  --paper-2: #efe8da;      /* deeper cream */
  --copper: #a86a34;       /* burnished copper accent */
  --copper-bright: #c98d4f;
  --mist: #b9c6c0;         /* pale green-grey on dark */
  --line: rgba(20, 32, 27, 0.14);
  --line-dark: rgba(246, 242, 233, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, .brand-name, .pull-quote p, .testimonial p, .press-quote {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.4rem, 8.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.3rem, 4vw, 1.6rem); }

a { color: var(--copper); text-underline-offset: 3px; }
a:hover { color: var(--copper-bright); }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section.dark {
  background:
    radial-gradient(90rem 40rem at 85% -10%, rgba(47, 82, 74, 0.55), transparent 60%),
    var(--pine);
  color: var(--paper);
}
.section.dark h2, .section.dark h3 { color: var(--paper); }
.section.dark .lede, .section.dark p { color: #e7e2d4; }

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
}
.section.dark .kicker { color: var(--copper-bright); }
.lede { font-size: 1.1rem; max-width: 46rem; margin-bottom: 2rem; }
.fine { font-size: 0.82rem; opacity: 0.75; margin-top: 0.8rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.85rem 1.6rem;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-solid { background: var(--copper); color: #fff; border: 1px solid var(--copper); }
.btn-solid:hover { background: var(--copper-bright); border-color: var(--copper-bright); color: #fff; }
.btn-ghost { color: var(--paper); border: 1px solid rgba(246, 242, 233, 0.55); }
.btn-ghost:hover { border-color: var(--paper); color: #fff; }
.btn-small { padding: 0.55rem 1.1rem; }
.btn-wide { width: 100%; border: none; font-size: 1rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(20, 32, 27, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(246, 242, 233, 0.08);
}
.nav {
  max-width: 72rem; margin: 0 auto; padding: 0.65rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 2.15rem; height: 2.15rem;
  border: 1px solid var(--copper-bright);
  border-radius: 50%;
  font-family: var(--serif); font-weight: 700; font-size: 0.8rem;
  color: var(--copper-bright); letter-spacing: 0.05em;
}
.brand-name { color: var(--paper); font-size: 1.25rem; font-weight: 600; }
.brand-name em { font-style: italic; color: var(--copper-bright); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); transition: 0.2s; }

.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a:not(.btn) {
  color: var(--mist); text-decoration: none; font-size: 0.88rem; font-weight: 500;
  padding: 0.5rem 0;
}
.nav-links a:not(.btn):hover { color: var(--paper); }

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(246, 242, 233, 0.1);
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 0.8rem 0; width: 100%; font-size: 1rem; }
  .nav-links .btn { margin-top: 0.75rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  /* hero image is set per-site in the SITE-SPECIFIC tail of each styles.css */
  background: var(--river) center / cover no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 32, 27, 0.62) 0%,
    rgba(20, 32, 27, 0.38) 42%,
    rgba(20, 32, 27, 0.82) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 72rem; margin: 0 auto;
  padding: 8.5rem 1.25rem 2.5rem;
}
.hero h1 .accent { color: var(--copper-bright); font-style: italic; }
.hero-sub { max-width: 38rem; margin: 1.25rem 0 1.9rem; font-size: 1.05rem; color: #eae5d8; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-stats {
  position: relative; z-index: 1;
  width: 100%; max-width: 72rem; margin: 2.2rem auto 0;
  padding: 1.1rem 1.25rem 1.4rem;
  border-top: 1px solid rgba(246, 242, 233, 0.22);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.hero-stats span { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- layout helpers ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- ghillie ---------- */
.ghillie-photo img { border-radius: 4px; box-shadow: 0 20px 50px -18px rgba(20, 32, 27, 0.45); }
.ghillie-photo figcaption { font-size: 0.8rem; margin-top: 0.7rem; opacity: 0.8; }
.ghillie-copy p { margin-bottom: 1rem; }
.signature {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic; margin-top: 1.6rem;
}
.signature span {
  display: block; font-family: var(--sans); font-style: normal; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); margin-top: 0.25rem;
}

/* ---------- creed ---------- */
.creed-compare { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 2.4rem 0; }
@media (min-width: 780px) { .creed-compare { grid-template-columns: 1fr 1fr; } }
.day-card {
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 1.6rem;
  background: rgba(20, 32, 27, 0.35);
}
.day-sportsman { border-color: rgba(201, 141, 79, 0.55); }
.day-hours {
  font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  color: var(--copper-bright); margin: 0.3rem 0 0.8rem;
}
.day-verdict { margin-top: 1rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }
.day-verdict.good { color: var(--copper-bright); }

.creed-list { list-style: none; counter-reset: creed; max-width: 46rem; margin: 0 0 2.5rem; }
.creed-list li {
  counter-increment: creed;
  padding: 1.1rem 0 1.1rem 3rem;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.creed-list li::before {
  content: counter(creed, lower-roman) ".";
  position: absolute; left: 0; top: 1.05rem;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--copper-bright);
}
.pull-quote { max-width: 40rem; }
.pull-quote p { font-size: clamp(1.5rem, 4vw, 2.1rem); font-style: italic; }
.pull-quote cite { display: block; margin-top: 0.8rem; font-style: normal; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }

/* ---------- pursuits ---------- */
.pursuit {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbf8f1;
  padding: 1.7rem;
}
.pursuit.featured { margin-bottom: 1.25rem; }
.pursuit-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.7rem; }
.pursuit h3 { margin-bottom: 0.5rem; }
.pursuit .num { font-style: italic; color: var(--copper); margin-right: 0.35rem; }
.price-tag { font-size: 0.9rem; color: var(--river); margin-top: 0.9rem; }
.pursuit-head .price-tag { margin-top: 0; }
.price-tag strong { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); }
.pursuit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 700px) { .pursuit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .pursuit-grid { grid-template-columns: repeat(3, 1fr); } }

.table-scroll { overflow-x: auto; margin: 1.2rem 0 0.3rem; }
.rates { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 34rem; }
.rates th, .rates td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
.rates thead th {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--river); border-bottom: 2px solid var(--river);
}
.rates tbody th { font-weight: 600; }
.rates tbody th span { display: block; font-weight: 400; font-size: 0.75rem; color: var(--river); }
.rates td.hl { background: rgba(168, 106, 52, 0.09); font-weight: 600; }

/* ---------- season ---------- */
.season-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 700px) { .season-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .season-grid { grid-template-columns: repeat(4, 1fr); } }
.season-card {
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 1.5rem;
  background: rgba(20, 32, 27, 0.35);
  display: flex; flex-direction: column;
}
.season-months { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-bright); margin-bottom: 0.6rem; }
.season-card h3 { margin-bottom: 0.6rem; }
.season-card p { font-size: 0.93rem; }
.season-tag {
  margin-top: auto; padding-top: 1rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist);
}

/* ---------- river + gallery ---------- */
.gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
  margin-top: 2.2rem;
}
@media (min-width: 860px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.gallery figure { border-radius: 4px; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.4s; }
.gallery figure.tall { grid-row: span 2; }
.gallery figure.tall img { aspect-ratio: auto; height: 100%; }
.gallery img:hover { transform: scale(1.03); }

/* ---------- word / press ---------- */
.word .grid-2 { align-items: start; }
.testimonial p { font-size: clamp(1.25rem, 3vw, 1.7rem); font-style: italic; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); }
.press { border-left: 2px solid var(--copper-bright); padding-left: 1.4rem; }
.press-quote { font-size: 1.15rem; font-style: italic; margin-bottom: 0.8rem; }
.press-src { font-size: 0.85rem; }
.press-src a { color: var(--copper-bright); }

/* ---------- enquire ---------- */
.enquire { background: var(--paper-2); }
.enquire .grid-2 { align-items: start; }
.enquire-copy p { margin-bottom: 1rem; max-width: 34rem; }
.contact-list { margin: 1.6rem 0 0; }
.contact-list div { display: flex; gap: 1rem; padding: 0.55rem 0; border-top: 1px solid var(--line); }
.contact-list dt {
  flex: 0 0 6.5rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--river); padding-top: 0.2rem;
}
.contact-list dd a { font-weight: 500; }

.enquiry-form {
  background: #fbf8f1;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.8rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--river); margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.7rem 0.8rem;
  min-height: 44px;
}
.field textarea { min-height: 6rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(47, 82, 74, 0.1);
  border-left: 3px solid var(--river);
  font-size: 0.9rem;
  border-radius: 2px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  text-align: center;
  padding: 3.2rem 0 2.6rem;
  font-size: 0.9rem;
}
.footer-brand { font-size: 1.5rem; color: var(--paper); margin-bottom: 0.4rem; }
.site-footer nav { margin: 1rem 0; }
.site-footer a { color: var(--mist); text-decoration: none; padding: 0.4rem 0.2rem; display: inline-block; }
.site-footer a:hover { color: var(--paper); }
.site-footer .fine { margin-top: 1.4rem; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery img { transition: none; }
}

/* ============================================================
   SITE-SPECIFIC — beatonsporting.com (flagship)
   ============================================================ */
.hero-media {
  background: url("assets/tay-grandtully-dark-water.webp") center 40% / cover no-repeat;
}
