/* ================================================================
   PENNOLA Cleaning Services — Business Plan Website
   style.css | Version 1.0 | New Orleans, LA

   MAINTAINER GUIDE:
   - Brand colors live in the :root CSS variables section below.
   - To change the color scheme, update --navy and --gold.
   - Font imports come from Google Fonts (requires internet).
   - Media queries at the bottom handle mobile layout.
   - @media print styles at the very bottom handle printing.
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --navy:         #0a1628;
  --navy-mid:     #162540;
  --navy-light:   #1e3354;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-pale:    #fdf6e3;

  /* UI Colors */
  --white:        #ffffff;
  --off-white:    #f8f6f1;
  --light-bg:     #f2f5f9;
  --green:        #1a7a4a;
  --green-bg:     #e6f4ee;
  --green-text:   #145c37;
  --red:          #c0392b;
  --red-bg:       #fde8e6;
  --amber:        #c47c00;
  --amber-bg:     #fff8e1;

  /* Text Colors */
  --text-dark:    #0f1f38;
  --text-mid:     #3d5169;
  --text-light:   #7a8fa6;

  /* Structure */
  --border:       #dbe3ed;
  --shadow-sm:    0 2px 8px rgba(10, 22, 40, 0.07);
  --shadow:       0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg:    0 12px 48px rgba(10, 22, 40, 0.14);
  --radius:       10px;
  --radius-lg:    16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.alt-bg  { background: var(--light-bg); }

.section-title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 760px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== HEADER ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.45));
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 3px;
  font-weight: 700;
}

header .tagline {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.8;
}

nav {
  display: flex;
  gap: 2px;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

nav a:hover,
nav a.nav-active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.12);
  text-decoration: none;
}

.print-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
}

.print-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 90px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a84c' fill-opacity='0.035'%3E%3Cpath d='M26 0l3 10H39l-8 6 3 10-8-6-8 6 3-10-8-6h10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-content h2 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content h2 .gold { color: var(--gold-light); }

.hero-content > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  margin-bottom: 38px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.stat-pill:hover { background: rgba(255,255,255,0.11); }

.stat-pill .num {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}

.stat-pill .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  font-size: 18rem;
  color: var(--gold);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ===== OVERVIEW CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon { font-size: 2rem; margin-bottom: 14px; }

.card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-mid);
  font-size: 0.91rem;
  line-height: 1.65;
}

.accent-purple { border-top: 4px solid #7c5cbf; }
.accent-gold   { border-top: 4px solid var(--gold); }
.accent-green  { border-top: 4px solid var(--green); }

/* ===== TAX CARDS ===== */
.tax-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.tax-card:hover { transform: translateY(-2px); }

.tax-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.tax-rate {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1;
}

.tax-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.58;
}

.nola-tag {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  vertical-align: middle;
}

.tax-note {
  background: #fff8e6;
  border: 1px solid #f0d070;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.875rem;
  color: #7a5a00;
  margin-top: 32px;
  line-height: 1.6;
}

/* ===== DATA TABLES (Startup + ROI) ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table thead tr { background: var(--navy); color: var(--gold-light); }

.data-table thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.data-table tbody tr:hover { background: var(--light-bg); }

.data-table tbody td { padding: 11px 16px; color: var(--text-dark); }

.total-row td {
  background: var(--off-white);
  border-top: 2px solid var(--gold);
  font-weight: 700;
  color: var(--navy) !important;
}

/* ===== PROFIT MATRIX TABLE ===== */
.profit-matrix-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.profit-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  white-space: nowrap;
}

.profit-matrix thead tr { background: var(--navy); color: var(--gold-light); }

.profit-matrix thead th {
  padding: 11px 13px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.profit-matrix thead th:first-child { text-align: left; min-width: 130px; }

.profit-matrix tbody tr { border-bottom: 1px solid var(--border); }
.profit-matrix tbody tr:nth-child(even) { background: #fafbfc; }

.profit-matrix tbody td {
  padding: 9px 13px;
  text-align: center;
  font-weight: 600;
  font-size: 0.83rem;
}

.profit-matrix tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--off-white);
  padding-left: 16px;
  font-family: 'Inter', sans-serif;
}

.cell-profit   { color: var(--green-text); background: var(--green-bg);   border-radius: 5px; padding: 3px 8px; display: inline-block; }
.cell-loss     { color: var(--red);        background: var(--red-bg);     border-radius: 5px; padding: 3px 8px; display: inline-block; }
.cell-marginal { color: var(--amber);      background: var(--amber-bg);   border-radius: 5px; padding: 3px 8px; display: inline-block; }

/* ===== TIER TABS ===== */
.tier-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 26px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.tab-btn:hover { border-color: var(--gold); color: var(--navy); }

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
}

/* ===== INTERACTIVE CALCULATOR ===== */
.calc-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}

.calc-controls {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 88px;
}

.calc-title {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.control-group { margin-bottom: 20px; }
.control-group:last-child { margin-bottom: 0; }

.control-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
}

/* Professional Dropdown */
.pro-select {
  width: 100%;
  padding: 11px 40px 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  color: var(--text-dark);
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.4;
}

.pro-select:hover  { border-color: var(--gold); }
.pro-select:focus  {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

.control-group small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

/* ===== CALCULATOR RESULTS ===== */
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.big-result {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 36px 28px;
}

.result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  font-weight: 600;
}

.result-val {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.result-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  min-height: 1.2em;
}

.result-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.result-mini {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.rm-label {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.rm-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
}

.rm-val.green { color: var(--green); }
.rm-val.red   { color: var(--red); }

/* ===== EXPENSE BAR ===== */
.expense-bar-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.expense-bar-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.expense-bar {
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  background: var(--border);
  margin-bottom: 12px;
}

.bar-seg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow: hidden;
}

.seg-labor    { background: #3d7be8; }
.seg-overhead { background: #9966cc; }
.seg-tax      { background: #e0873a; }
.seg-profit   { background: var(--green); }

.bar-legend {
  display: flex;
  gap: 18px;
  font-size: 0.76rem;
  color: var(--text-mid);
  flex-wrap: wrap;
  align-items: center;
}

.leg-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.leg-dot.labor    { background: #3d7be8; }
.leg-dot.overhead { background: #9966cc; }
.leg-dot.tax      { background: #e0873a; }
.leg-dot.profit   { background: var(--green); }

/* ===== BUSINESS MAP TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, #3d7be8, var(--gold), var(--green), var(--navy));
}

.tl-item {
  position: relative;
  margin-bottom: 44px;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-marker {
  position: absolute;
  left: -52px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.phase1 { background: #3d7be8; }
.phase2 { background: var(--gold); color: var(--navy) !important; }
.phase3 { background: var(--green); }
.phase4 { background: var(--navy); }

.tl-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s;
}

.tl-content:hover { box-shadow: var(--shadow); }

.tl-phase {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.tl-content h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.tl-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tl-content ul li {
  font-size: 0.895rem;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.tl-content ul li::before {
  content: '⚜';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.68rem;
  top: 2px;
}

/* ===== CHARTS ===== */
.chart-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 320px;
  position: relative;
}

.chart-wrap.tall { height: 400px; }

/* ===== ROI & KEY INSIGHT ===== */
.green-text { color: var(--green);  font-weight: 600; }
.red-text   { color: var(--red);    font-weight: 600; }

.key-insight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 24px;
  border-left: 4px solid var(--gold);
}

.key-insight h4 {
  color: var(--gold-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.key-insight p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.key-insight strong { color: var(--gold-light); }

.footnote {
  font-size: 0.775rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.nola-ornament {
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand { font-size: 1.25rem; }

.footer-brand .tagline {
  font-size: 0.72rem;
  color: var(--gold-light);
  opacity: 0.6;
}

.footer-note { text-align: right; max-width: 500px; }

.footer-note p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
  margin-bottom: 4px;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-qr #qr-code {
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  line-height: 0;
}

.qr-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.45;
  margin: 0;
}

.qr-label strong {
  color: var(--gold-light);
  opacity: 0.8;
}

.owner-access-btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px;
  color: rgba(201, 168, 76, 0.7);
  font-size: 0.72rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.owner-access-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .two-col        { grid-template-columns: 1fr; }
  .calc-grid      { grid-template-columns: 1fr; }
  .calc-controls  { position: relative; top: auto; }
  .result-row     { grid-template-columns: repeat(2, 1fr); }
  .hero-content h2 { font-size: 2.6rem; }
  nav             { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .hero { padding: 56px 20px; min-height: auto; }
  .hero-content h2 { font-size: 2rem; }
  .result-val { font-size: 2.6rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-pill { width: 100%; flex-direction: row; justify-content: space-between; }
  .tier-tabs { flex-direction: column; }
  .result-row { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.65rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-note { text-align: center; max-width: 100%; }
  .hero-visual { font-size: 9rem; opacity: 0.04; }
}

/* ===== PRINT STYLES ===== */
@media print {
  header, .print-btn, .hero-visual, .tier-tabs { display: none !important; }
  .section { padding: 20px 0; page-break-inside: avoid; }
  .alt-bg { background: white !important; }
  .chart-wrap { height: 200px; box-shadow: none; border: 1px solid #ccc; }
  .chart-wrap.tall { height: 260px; }
  body { font-size: 11px; }
  .section-title { font-size: 1.2rem; }
  .calc-controls { position: relative; top: auto; }
  .two-col, .calc-grid { grid-template-columns: 1fr; gap: 16px; }
  .result-row { grid-template-columns: repeat(4, 1fr); }
  a { color: inherit; }
  .hero {
    background: var(--navy) !important;
    padding: 32px 24px;
    min-height: auto;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
