/* Bruce & Walker — shared styles */

:root {
  --forest: #1f3d2e;
  --forest-dark: #14281e;
  --cream: #faf7f0;
  --cream-dark: #f0ead9;
  --gold: #b8935a;
  --ink: #2a2823;
  --ink-light: #5a564c;
  --border: #e3dcc9;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-dark);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; margin-bottom: 0.9rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

@media (max-width: 480px) {
  h1, .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

p { margin-bottom: 1rem; color: var(--ink-light); }

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold); }

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

/* --- Header --- */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-link img { height: 52px; width: auto; }
.logo-text { font-family: Georgia, serif; font-size: 1.3rem; color: var(--forest-dark); letter-spacing: 0.5px; }

nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
nav.main-nav a.active { color: var(--forest); border-bottom: 2px solid var(--gold); padding-bottom: 4px; }

.header-phone { color: var(--forest-dark); font-weight: 600; white-space: nowrap; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--forest-dark); }

@media (max-width: 760px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,40,30,0.72) 0%, rgba(20,40,30,0.35) 55%, rgba(20,40,30,0.15) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 560px; padding: 0 24px; margin: 0 auto; width: 100%; }
.hero h1 { color: white; margin-bottom: 0.5rem; }
.hero .container { display: flex; }

/* --- Sections --- */
section { padding: 64px 0; }
section.alt { background: var(--cream-dark); }
section.dark { background: var(--forest-dark); color: white; }
section.dark h2, section.dark h3 { color: white; }
section.dark p { color: #cfd8d0; }

.section-intro { max-width: 700px; margin-bottom: 2.5rem; }

/* --- Cards / grid --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.value-card { background: white; border: 1px solid var(--border); border-radius: 6px; padding: 28px; }
.value-card h3 { color: var(--forest); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--forest);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn:hover { background: var(--forest-dark); color: white; }
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid white;
}
.btn-outline:hover { background: white; color: var(--forest-dark); }
.btn-gold { background: var(--gold); }
.btn-gold:hover { background: #a17f4b; }

/* --- Price tables --- */
.rod-family { margin-bottom: 3rem; }
.rod-family h3 { border-bottom: 2px solid var(--gold); padding-bottom: 8px; margin-bottom: 1rem; }
table.price-table { width: 100%; border-collapse: collapse; }
table.price-table td { padding: 8px 4px; border-bottom: 1px solid var(--border); font-size: 0.97rem; }
table.price-table td.size { color: var(--ink); font-weight: 500; }
table.price-table td.price { text-align: right; color: var(--forest); font-weight: 600; white-space: nowrap; }
.price-note { font-style: italic; color: var(--ink-light); font-size: 0.9rem; margin-top: 6px; }

.family-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 3rem; padding: 20px; background: white; border: 1px solid var(--border); border-radius: 6px;
}
.family-nav a {
  padding: 6px 14px; background: var(--cream-dark); border-radius: 20px; font-size: 0.88rem;
}

/* --- Image gallery --- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.photo-feature img { width: 100%; border-radius: 6px; display: block; }

/* --- Contact block --- */
.contact-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .contact-block { grid-template-columns: 1fr; } }
.contact-details p { margin-bottom: 0.4rem; }
.contact-details a { color: var(--gold); }

form.contact-form { display: flex; flex-direction: column; gap: 12px; }
form.contact-form input, form.contact-form textarea {
  padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.95rem; font-family: inherit;
}
form.contact-form textarea { min-height: 110px; resize: vertical; }

/* --- Footer --- */
footer {
  background: var(--forest-dark);
  color: #cfd8d0;
  padding: 36px 0;
  text-align: center;
  font-size: 0.88rem;
}
footer a { color: #cfd8d0; }
footer .social-links { margin-bottom: 12px; }
footer .social-links a { margin: 0 10px; }

/* --- N. America steering page --- */
.na-panel {
  background: white; border: 1px solid var(--border); border-radius: 8px;
  padding: 48px; text-align: center; max-width: 640px; margin: 0 auto;
}

/* --- utility --- */
.text-center { text-align: center; }
.small { font-size: 0.88rem; color: var(--ink-light); }
