/* ============================================================
   BLUE RIDGE CAR & CONCIERGE — shared site styles
   Design system carried over from the print flyer:
   ridge-blue/navy header, brass accent, pine green,
   Lora + Poppins, layered mountain-ridge motif.
   ============================================================ */

:root {
  --ridge-dark: #202B33;
  --ridge-mid: #263845;
  --ridge-deep-green: #2E4A47;
  --pine: #3C5A48;
  --steel-blue: #2C4A57;
  --brass: #C89A5F;
  --brass-deep: #B8834D;
  --paper: #EEF0E7;
  --panel: #F8F7F1;
  --ink: #232F29;
  --ink-soft: #3A433D;
  --muted: #79806F;
  --line: #DCDFD2;
  --cream: #F6F3EA;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SKIP LINK / FOCUS ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--brass-deep);
  outline-offset: 2px;
}

/* ---------- NAV ---------- */
.site-header {
  background: var(--ridge-dark);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.3px;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand .sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.72rem;
  color: #A9C2B8;
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D8DED6;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brass);
  border-color: var(--brass);
}
.nav-cta {
  background: var(--brass);
  color: #2A2016 !important;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: none !important;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: #D6AC72; }

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

@media (max-width: 820px) {
  .nav-links { 
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ridge-dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-toggle { display: block; }
  .nav-cta { display: inline-block; margin-top: 10px; text-align: center; }
}

/* ---------- HERO (ridge motif, page-specific size) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ridge-dark) 0%, var(--ridge-mid) 65%, var(--ridge-deep-green) 100%);
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}
.hero-inner {
  position: relative;
  z-index: 5;
  padding: 4.5rem 1.5rem 6.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.hero.hero-sm .hero-inner { padding: 3.2rem 1.5rem 4.8rem; }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--brass);
  font-weight: 600;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin-top: 0.6rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #A9C2B8;
  display: block;
}
.hero p.lede {
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: #D8DED6;
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow .2s ease;
}
.btn-brass { background: var(--brass); color: #2A2016; }
.btn-brass:hover { background: #D6AC72; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(246,243,234,0.55); color: var(--cream); }
.btn-outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.06); }

.ridges {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
}

/* ---------- ROUTE STRIP ---------- */
.route {
  width: 100%;
  background: var(--brass);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  color: #2A2016;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 0.3rem 0;
}
.route .stop { white-space: nowrap; padding: 0 10px; }
.route .dot { opacity: 0.5; font-weight: 400; }

/* ---------- STATS ---------- */
.stats {
  display: flex;
  padding: 2.6rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  flex-wrap: wrap;
}
.stat { flex: 1; min-width: 140px; padding: 0.5rem 1rem; position: relative; }
.stat + .stat { border-left: 1px solid #D6D9CB; }
@media (max-width: 600px) {
  .stat + .stat { border-left: none; border-top: 1px solid #D6D9CB; }
}
.stat .num {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--steel-blue);
}
.stat:nth-child(3) .num { color: var(--pine); }
.stat .cap {
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 3.5rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.section-head { max-width: 640px; margin-bottom: 2.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}
.section h2 {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  margin-top: 0.4rem;
}
.section h2.pine { color: var(--pine); }
.section h2.steel { color: var(--steel-blue); }
.section p.deck {
  color: var(--ink-soft);
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- CHEF INTRO (photo + bio) ---------- */
.chef-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.2rem;
  align-items: center;
}
@media (max-width: 720px) {
  .chef-intro { grid-template-columns: 1fr; }
  .chef-photo { max-width: 280px; margin: 0 auto; }
}
.chef-photo img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 3px solid var(--brass);
  box-shadow: 0 12px 28px rgba(32,43,51,0.16);
}
@media (max-width: 720px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.9rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: 0 10px 24px rgba(32,43,51,0.08); transform: translateY(-2px); }
.card .icon { width: 34px; height: 34px; margin-bottom: 0.7rem; }
.card h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--steel-blue);
  margin-bottom: 0.5rem;
}
.card.pine-card h3 { color: var(--pine); }
.card .rule { width: 34px; height: 2.5px; background: var(--brass); margin-bottom: 0.9rem; }
.card p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; }
.card p + p { margin-top: 0.6rem; }
.card .note { font-size: 0.82rem; font-style: italic; color: var(--muted); margin-top: 0.9rem; }
.card a.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brass-deep);
  border-bottom: 1.5px solid var(--brass-deep);
}

/* ---------- RATES TABLES ---------- */
.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 720px) { .rates-grid { grid-template-columns: 1fr; } }
.rates h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel-blue);
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--steel-blue);
}
.rates.pine h3 { color: var(--pine); border-bottom-color: var(--pine); }
.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 0.75px dotted #C7CBBB;
  gap: 1rem;
}
.row .place { font-weight: 500; }
.row .price {
  font-weight: 700;
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  white-space: nowrap;
}
.row .price.text-price { font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600; }
.row-sub { font-size: 0.78rem; color: #8A9182; font-style: italic; margin-top: -0.3rem; margin-bottom: 0.5rem; }
.rate-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; line-height: 1.5; font-style: italic; }

/* ---------- POLICY LIST ---------- */
.policy-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.policy-list li {
  display: flex;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.policy-list .mark {
  color: var(--brass-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- SIGN-OFF RIDGE BAND ---------- */
.signoff {
  width: 100%;
  height: 130px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  background: #DDE3D4;
}
.signoff-ridges { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }
.signoff-text {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: var(--cream);
  text-align: center;
  padding: 0 1.5rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ridge-dark);
  color: var(--cream);
  padding: 2.6rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-left .name {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-left .role {
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.2rem;
}
.footer-left .phone-label {
  font-size: 0.75rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-top: 0.9rem;
}
.footer-left .phone {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 0.15rem;
}
.footer-left .phone a { border-bottom: 1.5px solid transparent; transition: border-color 0.2s ease; }
.footer-left .phone a:hover { border-color: var(--brass); }
.footer-left .email { font-size: 0.85rem; color: #C3CBC1; margin-top: 0.4rem; }
.footer-right {
  text-align: right;
  font-size: 0.82rem;
  color: #A9B4AC;
  line-height: 1.7;
  max-width: 280px;
}
.footer-right .label {
  color: var(--brass);
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  display: block;
  margin-bottom: 0.2rem;
}
.footer-right .pay { margin-top: 0.8rem; }
@media (max-width: 600px) {
  .footer-grid { flex-direction: column; }
  .footer-right { text-align: left; max-width: none; }
}
.footer-bottom {
  max-width: 1080px;
  margin: 1.8rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: #8A948C;
  text-align: center;
}

/* ---------- MENU (drop-off menu page) ---------- */
.menu-empty {
  background: var(--panel);
  border: 1.5px dashed var(--line);
  border-radius: 6px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.menu-empty .icon { width: 40px; height: 40px; margin: 0 auto 1rem; opacity: 0.6; }

.menu-section { margin-bottom: 2.6rem; }
.menu-section h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pine);
  padding-bottom: 0.6rem;
  margin-bottom: 0.3rem;
  border-bottom: 1.5px solid var(--pine);
}
.menu-item {
  padding: 1.1rem 0;
  border-bottom: 0.75px dotted #C7CBBB;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.menu-item-head .dish {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.menu-item-head .price {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brass-deep);
  white-space: nowrap;
}
.menu-item p.desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 0.35rem;
}
.menu-item .addons {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}
.menu-item .addons span {
  font-size: 0.82rem;
  color: var(--muted);
}
.menu-item .addons strong { color: var(--ink); font-weight: 600; }
.menu-footnote {
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
  margin-top: 0.4rem;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--ridge-dark);
  color: var(--cream);
  border-radius: 6px;
  padding: 2.2rem;
}
.contact-card .phone-label {
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.contact-card .phone {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
.contact-card .phone a:hover { border-bottom: 1.5px solid var(--brass); }
.contact-card .email { margin-top: 0.6rem; color: #C3CBC1; }
.contact-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 1.6rem 0; }
.contact-card .pay-list { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.pay-chip {
  border: 1px solid rgba(246,243,234,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: #D8DED6;
}
