/* ═══════════════════════════════════════════
   POOR JOHN'S PLUMBING — Main Stylesheet
   Brand: Navy & Gold
═══════════════════════════════════════════ */

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

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

:root {
  --navy:    #0d2e4f;
  --navy2:   #163d68;
  --navy3:   #0a2240;
  --gold:    #c9a84c;
  --gold2:   #e2c060;
  --gold3:   #a8873a;
  --dark:    #1c1c1c;
  --mid:     #555;
  --light:   #f5f2ec;
  --cream:   #faf8f3;
  --white:   #ffffff;
  --border:  #ddd8cc;
  --green:   #2e7d52;
  --font-h:  'Oswald', sans-serif;
  --font-b:  'Source Sans 3', sans-serif;
  --shadow:  0 4px 24px rgba(13,46,79,0.14);
  --shadow2: 0 2px 8px rgba(13,46,79,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--dark); background: var(--white); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── UTILITY ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); text-decoration: none; color: var(--navy); }
.btn-navy    { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy3); text-decoration: none; }
.btn-white   { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--light); text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; text-decoration: none; }
.btn-outline-gold { background: transparent; color: var(--gold2); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); text-decoration: none; }
/* compat */
.btn-red { background: var(--gold); color: var(--navy); }
.btn-red:hover { background: var(--gold2); text-decoration: none; color: var(--navy); }
.btn-blue { background: var(--navy); color: #fff; }
.btn-blue:hover { background: var(--navy3); text-decoration: none; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--navy3);
  padding: 7px 0;
  font-size: 13px;
  color: #7a9ab8;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: var(--gold2); font-weight: 600; letter-spacing: 0.02em; }
.top-bar a:hover { color: #fff; text-decoration: none; }
.top-bar .phones { display: flex; gap: 24px; }

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(13,46,79,0.10);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 20px; }
.logo-img { height: 58px; width: auto; display: block; min-width: 120px; }

nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
nav a {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 9px 14px;
  transition: all 0.2s;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active {
  color: var(--gold3);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  border-bottom: none !important;
  font-weight: 700 !important;
  margin-left: 8px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--navy3) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  background: var(--cream);
  color: var(--navy);
  padding: 72px 0 68px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(13,46,79,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold2);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 680px;
  color: var(--navy);
}
.hero h1 em { color: var(--gold3); font-style: normal; display: block; }

.hero-sub { font-size: 18px; color: var(--mid); max-width: 540px; margin-bottom: 36px; line-height: 1.7; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--mid); }
.trust-item strong { color: var(--navy); font-weight: 600; }
.trust-check { color: var(--gold3); font-size: 15px; }

/* ─── SECTIONS ─── */
.section { padding: 76px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: #fff; }
.section-navy { background: var(--navy); color: #fff; }

.section-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 10px;
}
.section-dark .section-label,
.section-navy .section-label { color: var(--gold2); }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-dark .section-title,
.section-navy .section-title { color: #fff; }

.section-intro { font-size: 17px; color: var(--mid); max-width: 580px; line-height: 1.72; margin-bottom: 40px; font-weight: 300; }
.section-dark .section-intro,
.section-navy .section-intro { color: rgba(255,255,255,0.55); }

/* ─── USP BAR ─── */
.usp-bar { background: var(--gold); padding: 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid rgba(13,46,79,0.15);
  color: var(--navy);
}
.usp-item:last-child { border-right: none; }
.usp-icon { font-size: 22px; flex-shrink: 0; }
.usp-text strong { display: block; font-family: var(--font-h); font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }
.usp-text span { font-size: 12px; color: rgba(13,46,79,0.65); }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 28px 24px;
  transition: all 0.22s;
  text-decoration: none;
  color: var(--dark);
  display: block;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-top-color: var(--gold);
  text-decoration: none;
}
.service-icon { font-size: 30px; margin-bottom: 14px; }
.service-name { font-family: var(--font-h); font-size: 17px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--mid); line-height: 1.55; }
.service-link { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--gold3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-feature { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.about-feature-icon { width: 46px; height: 46px; background: var(--navy); color: var(--gold2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-feature-text strong { display: block; font-family: var(--font-h); font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; }
.about-feature-text span { font-size: 14px; color: var(--mid); line-height: 1.5; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
}
.review-stars { color: var(--gold); font-size: 17px; margin-bottom: 14px; letter-spacing: 3px; }
.review-text { font-size: 14px; color: var(--mid); line-height: 1.68; margin-bottom: 18px; font-style: italic; }
.review-author { font-family: var(--font-h); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.review-source { font-size: 12px; color: #aaa; margin-top: 2px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-h); font-size: clamp(24px, 4vw, 38px); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 32px; font-weight: 300; }
.cta-phones { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-phone span { display: block; font-size: 11px; color: rgba(201,168,76,0.6); letter-spacing: 0.15em; text-transform: uppercase; text-align: center; margin-bottom: 5px; }
.cta-phone a { font-family: var(--font-h); font-size: 30px; font-weight: 700; color: var(--gold2); letter-spacing: 0.04em; text-decoration: none; }
.cta-phone a:hover { color: #fff; }

/* ─── PAGE HERO (inner) ─── */
.page-hero {
  background: linear-gradient(160deg, var(--navy3) 0%, var(--navy) 100%);
  padding: 52px 0 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,0.025) 40px, rgba(201,168,76,0.025) 41px);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.breadcrumb a { color: rgba(201,168,76,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb span { margin: 0 7px; opacity: 0.4; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(28px, 4.5vw, 50px); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold2); font-style: normal; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; font-weight: 300; line-height: 1.65; }

/* ─── SERVICE CONTENT ─── */
.service-content { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.service-body h2 { font-family: var(--font-h); font-size: 22px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.service-body h2:first-child { margin-top: 0; }
.service-body p { font-size: 16px; color: var(--mid); line-height: 1.72; margin-bottom: 16px; }
.service-body ul { list-style: none; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.service-body ul li { font-size: 15px; color: var(--mid); padding-left: 24px; position: relative; line-height: 1.5; }
.service-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--cream); border: 1px solid var(--border); border-top: 4px solid var(--gold); padding: 28px 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
.sidebar-phone { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sidebar-phone .icon { font-size: 20px; }
.sidebar-phone a { font-family: var(--font-h); font-size: 21px; font-weight: 700; color: var(--navy); text-decoration: none; }
.sidebar-phone a:hover { color: var(--gold3); }
.sidebar-phone span { font-size: 11px; color: var(--mid); display: block; text-transform: uppercase; letter-spacing: 0.1em; }
.sidebar-services { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-services li a { display: block; font-size: 14px; font-weight: 600; color: var(--navy); padding: 9px 14px; background: var(--white); border: 1px solid var(--border); text-decoration: none; transition: all 0.18s; }
.sidebar-services li a:hover { background: var(--navy); color: var(--gold2); border-color: var(--navy); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); background: var(--white); font-family: var(--font-b); font-size: 15px; color: var(--dark); outline: none; transition: border-color 0.2s; border-radius: 1px; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,46,79,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon { width: 46px; height: 46px; background: var(--navy); color: var(--gold2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-text strong { display: block; font-family: var(--font-h); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; }
.contact-info-text span, .contact-info-text a { font-size: 15px; color: var(--mid); }

/* ─── FOOTER ─── */
footer { background: var(--navy3); color: rgba(255,255,255,0.45); padding: 60px 0 0; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-phone { margin-bottom: 10px; }
.footer-phone span { font-size: 11px; color: rgba(201,168,76,0.5); display: block; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 2px; }
.footer-phone a { font-family: var(--font-h); font-size: 18px; font-weight: 600; color: var(--gold2); text-decoration: none; letter-spacing: 0.03em; }
.footer-phone a:hover { color: #fff; }
.footer-col h4 { font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 18px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,0.2); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: var(--gold2); }

/* ─── ABOUT PAGE ─── */
.about-story { max-width: 760px; }
.about-story p { font-size: 17px; color: var(--mid); line-height: 1.78; margin-bottom: 22px; font-weight: 300; }
.about-story h2 { font-family: var(--font-h); font-size: 22px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin: 44px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.team-card { background: var(--cream); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 28px 24px; text-align: center; }
.team-avatar { width: 72px; height: 72px; background: var(--navy); color: var(--gold2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 28px; font-weight: 700; margin: 0 auto 14px; }
.team-name { font-family: var(--font-h); font-size: 18px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--mid); text-transform: uppercase; letter-spacing: 0.12em; }

/* ─── PRICE PAGE ─── */
.price-intro { background: var(--navy); border-left: 5px solid var(--gold); padding: 24px 28px; margin-bottom: 36px; color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.72; font-weight: 300; }
.price-intro strong { color: var(--gold2); }
.price-section { margin-bottom: 52px; }
.price-section-title { font-family: var(--font-h); font-size: 18px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold2); background: var(--navy); padding: 14px 20px; border-left: 5px solid var(--gold); border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: 10px; }
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table thead tr { background: var(--navy); color: #fff; }
.price-table thead th { font-family: var(--font-h); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 13px 18px; text-align: left; }
.price-table thead th:not(:first-child) { text-align: center; }
.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table tbody tr:hover { background: #f0ece2; }
.price-table td { padding: 13px 18px; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.price-table td:first-child { font-weight: 600; color: var(--navy); border-left: 4px solid transparent; }
.price-table tbody tr:hover td:first-child { border-left-color: var(--gold); }
.price-table td:not(:first-child) { text-align: center; color: var(--mid); }
.labor    { color: var(--navy) !important; font-weight: 700 !important; }
.materials { color: #5a7a9a !important; font-weight: 600 !important; }
.range    { color: var(--green) !important; font-weight: 700 !important; }
.na       { color: #ccc !important; font-size: 13px !important; }
.varies   { color: var(--gold3) !important; font-style: italic !important; font-size: 13px !important; }
.client   { color: #7a5a9a !important; font-style: italic !important; font-size: 13px !important; }
.price-legend { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; background: var(--light); border: 1px solid var(--border); padding: 14px 20px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.disclaimer { background: var(--cream); border: 1px solid var(--border); border-left: 5px solid var(--gold); padding: 20px 24px; font-size: 14px; color: var(--mid); line-height: 1.68; margin-top: 44px; }
.disclaimer strong { color: var(--navy); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.fade-up   { animation: fadeUp 0.5s ease forwards; }
.fade-up-2 { animation: fadeUp 0.5s 0.12s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.5s 0.24s ease forwards; opacity: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 12px; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { width: 100%; border-bottom: 1px solid rgba(201,168,76,0.15); color: var(--gold2) !important; }
  .nav-toggle { display: flex; }
  .hero { padding: 56px 0 48px; }
  .hero-btns { flex-direction: column; }
  .hero-trust { gap: 16px; }
  .cta-phones { flex-direction: column; align-items: center; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  /* Prices page mobile */
  .price-table { font-size: 12px; }
  .price-table td, .price-table thead th { padding: 9px 8px; }
  .price-section { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-section-title { font-size: 15px; padding: 12px 14px; }
  .price-legend { gap: 10px; }
  .legend-item { font-size: 12px; }
  .price-intro { padding: 18px 16px; font-size: 14px; }
}
