/* ===== RECOOP BARRELS - SITE STYLES ===== */
/* Background: #111111 | Gold: #C9913A | Green: #2E7D32 | White: #FFFFFF */

:root {
  --black:       #111111;
  --black-mid:   #1C1C1C;
  --black-light: #242424;
  --black-card:  #1A1A1A;
  --gold:        #C9913A;
  --gold-light:  #E8B86D;
  --gold-dark:   #A0722A;
  --green:       #2E7D32;
  --green-light: #4CAF50;
  --white:       #FFFFFF;
  --white-dim:   rgba(255,255,255,0.82);
  --white-muted: rgba(255,255,255,0.55);
  --white-faint: rgba(255,255,255,0.2);
  --border:      rgba(255,255,255,0.1);
  --gold-border: rgba(201,145,58,0.3);
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ===== TOP UTILITY BAR ===== */
.topbar {
  background: #0A0A0A;
  padding: 7px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.topbar-hours { }
.topbar-btns { display: flex; gap: 8px; }
.tb-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.tb-btn:hover { opacity: 0.85; color: inherit; }
.tb-btn-call { background: var(--gold); color: var(--black); }
.tb-btn-email { background: transparent; color: var(--gold-light); border: 1px solid var(--gold-border); }

/* ===== NAV ===== */
nav {
  background: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(201,145,58,0.12);
}
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  margin-left: 8px;
  padding: 9px 18px;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); color: var(--black); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--black-mid);
  padding: 50px 30px 40px;
  border-bottom: 1px solid var(--gold-border);
}
.page-hero h1 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.page-hero h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--white);
  line-height: 1.15;
}

/* ===== SECTIONS ===== */
.section { padding: 70px 30px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-alt { background: var(--black-mid); }
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-intro {
  font-size: 16px;
  color: var(--white-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 44px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-sans);
}
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white-dim);
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13px;
  border: 1.5px solid var(--white-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--white); background: rgba(201,145,58,0.08); }
.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-green:hover { background: var(--green-light); color: var(--white); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #0A0A0A;
  padding: 18px 30px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  color: var(--white-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold);
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== CARDS ===== */
.card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--gold-border); }

/* ===== COMPARISON TABLE ===== */
.comp-table { width: 100%; border-collapse: collapse; border-radius: 4px; overflow: hidden; }
.comp-table th {
  background: var(--gold-dark);
  color: var(--white);
  padding: 13px 16px;
  font-size: 13px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.comp-table th:not(:first-child) { text-align: center; }
.comp-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  background: var(--black-card);
  color: var(--white-dim);
}
.comp-table td:not(:first-child) { text-align: center; font-weight: 600; }
.comp-table tr:nth-child(even) td { background: var(--black-mid); }
.comp-table tr:last-child td { border-bottom: none; }
.td-yes { color: var(--green-light); }
.td-no { color: #EF5350; }
.td-price-new { color: #EF5350; font-size: 15px; }
.td-price-recoop { color: var(--green-light); font-size: 15px; }

/* ===== FORMS ===== */
.form-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-row label {
  font-size: 11px;
  font-weight: 700;
  color: var(--white-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 14px;
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row select option { background: var(--black-mid); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-full { grid-column: 1 / -1; }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 13px 32px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: background 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background: #0A0A0A;
  color: var(--white-muted);
  padding: 48px 30px 24px;
  border-top: 1px solid var(--gold-border);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 12px; line-height: 1.65; color: var(--white-muted); }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--white-muted);
  font-size: 12px;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--white-muted);
}
.social-links { display: flex; gap: 14px; }
.social-links a { color: var(--white-muted); font-size: 11px; text-decoration: none; }
.social-links a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .topbar-hours { display: none; }
  nav { padding: 0 16px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 10px 9px; font-size: 12px; }
  .section { padding: 50px 20px; }
  .page-hero { padding: 36px 20px; }
  .page-hero h2 { font-size: 28px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
