/* ─────────────────────────────────────────
   COMMONWEALTH CLINICAL SERVICES
   Colors: Burgundy #7B1F3A | Gold #C4951E
   Font: System UI stack
──────────────────────────────────────── */

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

:root {
  --burgundy:       #7B1F3A;
  --burgundy-dark:  #5E1729;
  --burgundy-deep:  #3D0F1A;
  --gold:           #C4951E;
  --gold-dark:      #A07A14;
  --gold-light:     #F9F2E2;
  --cream:          #FBF7EE;
  --off-white:      #F8F5F0;
  --white:          #FFFFFF;
  --gray-line:      #E4DDD6;
  --text:           #1A1A1A;
  --text-mid:       #3E2E33;
  --text-muted:     #6B5058;
  --green:          #1E7A4E;
  --radius:         10px;
  --radius-lg:      16px;
  --shadow:         0 4px 20px rgba(123,31,58,0.10);
  --shadow-sm:      0 2px 8px rgba(123,31,58,0.07);
  --t:              0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── TYPE ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.35; }
h4 { font-size: 1rem;  font-weight: 700; }

.label {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark);
  display: block; margin-bottom: 0.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.45rem; padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all var(--t); border: 2px solid transparent;
  min-height: 52px; white-space: nowrap;
}
.btn-primary { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(123,31,58,0.35); }

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(196,149,30,0.4); }

.btn-outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn-white:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── CALL BAR ── */
.call-bar {
  background: var(--burgundy-deep); color: rgba(255,255,255,0.9);
  padding: 0.6rem 0; text-align: center; font-size: 1rem; font-weight: 600;
}
.call-bar a { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.call-bar a:hover { color: #e5b03a; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: 0.65rem 0;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(123,31,58,0.08);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.logo img { height: 80px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 0.2rem; align-items: center; }
.main-nav a {
  display: block; padding: 0.5rem 1.05rem;
  font-size: 0.95rem; font-weight: 600; color: var(--text-mid);
  border-radius: var(--radius); transition: all var(--t);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--gold-light); color: var(--burgundy);
}
.nav-cta { margin-left: 0.75rem; }

.mobile-toggle {
  display: none; background: none;
  border: 2px solid var(--gray-line); border-radius: var(--radius);
  font-size: 1.4rem; color: var(--burgundy); cursor: pointer;
  margin-left: auto; padding: 0.4rem 0.7rem; line-height: 1;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--burgundy);
  padding: 3.5rem 0 3rem;
}
.page-hero .label { color: rgba(255,255,255,0.65); }
.page-hero h1 { color: var(--white); margin: 0.3rem 0 0.7rem; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.65rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── HOMEPAGE HERO ── */
.hero { background: var(--cream); padding: 5rem 0 4rem; border-bottom: 3px solid var(--gold-light); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 { color: var(--burgundy-deep); margin: 0.4rem 0 1.2rem; }
.hero-text p  { font-size: 1.15rem; color: var(--text-mid); max-width: 520px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow); border: 2px solid var(--gold-light);
}
.info-card-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold-dark);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-light);
}
.info-list { display: flex; flex-direction: column; gap: 1.1rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.info-icon {
  font-size: 1.2rem; width: 40px; height: 40px;
  background: var(--gold-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-item strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--burgundy); margin-bottom: 0.15rem;
}
.info-item p { font-size: 0.95rem; color: var(--text); line-height: 1.5; margin: 0; }
.info-item a { color: var(--burgundy); }
.info-item a:hover { text-decoration: underline; }
.phone-large { display: block; font-size: 1.5rem; font-weight: 700; color: var(--burgundy); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--gray-line); padding: 1.4rem 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.9rem; font-weight: 600; color: var(--text-mid);
  padding: 0.4rem 1rem; background: var(--off-white);
  border-radius: 50px; border: 1px solid var(--gray-line);
}
.trust-badge .chk { color: var(--green); }

/* ── SECTIONS ── */
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-light   { background: var(--off-white); }
.bg-burg    { background: var(--burgundy); }
.bg-gold    { background: var(--gold-light); }

.sec-hdr { margin-bottom: 3rem; }
.sec-hdr.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.sec-hdr h2 { color: var(--burgundy-deep); margin: 0.35rem 0 0.65rem; }
.sec-hdr p  { font-size: 1.02rem; color: var(--text-muted); max-width: 620px; }
.sec-hdr.center p { margin: 0 auto; }

/* ── NAV DROPDOWN ── */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Hidden by default — JS adds .open to show it */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 300;
  padding: 0.5rem 0;
  flex-direction: column;
  margin-top: 0;
}
.has-dropdown.open .dropdown {
  display: flex;
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 0;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--gold-light);
  color: var(--burgundy);
}
.dropdown li + li {
  border-top: 1px solid var(--gray-line);
}

/* Mobile: same behaviour, stacked layout */
@media (max-width: 768px) {
  .has-dropdown.open .dropdown {
    position: static;
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    background: var(--off-white);
    padding: 0.25rem 0 0.25rem 0.5rem;
    margin-top: 0.25rem;
  }
  .dropdown a { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .dropdown li + li { border-top: none; }
}

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; border: 2px solid var(--gray-line);
  transition: all var(--t);
}
.svc-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-icon {
  font-size: 2rem; width: 56px; height: 56px;
  background: var(--gold-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.svc-card h3 { color: var(--burgundy); margin-bottom: 0.6rem; }
.svc-card p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1rem; font-size: 0.9rem; font-weight: 700; color: var(--burgundy);
  transition: gap var(--t);
}
.svc-link:hover { gap: 0.5rem; text-decoration: underline; }

/* ── SERVICE DETAIL (services page) ── */
.svc-detail { padding: 4rem 0; border-bottom: 1px solid var(--gray-line); }
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.svc-detail-grid.flip { direction: rtl; }
.svc-detail-grid.flip > * { direction: ltr; }
.svc-img {
  background: var(--gold-light); border-radius: var(--radius-lg);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--burgundy); font-weight: 600;
  border: 2px dashed var(--gold);
}
.svc-detail-grid h2 { color: var(--burgundy-deep); margin: 0.3rem 0 0.9rem; }
.svc-detail-grid p  { color: var(--text-muted); margin-bottom: 0.85rem; }

/* ── CHECKLIST ── */
.check-list { display: flex; flex-direction: column; gap: 0.65rem; margin: 1.5rem 0 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: var(--text); line-height: 1.55; }
.chk { color: var(--green); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.img-box {
  background: var(--gold-light); border-radius: var(--radius-lg);
  min-height: 400px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--burgundy); font-weight: 600;
  border: 2px dashed var(--gold);
}
.text-col h2 { color: var(--burgundy-deep); margin: 0.35rem 0 1rem; }
.text-col p  { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; }

/* ── HIGHLIGHTS ── */
.highlights { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.hl-item {
  display: flex; gap: 1rem; padding: 1rem 1.25rem;
  background: var(--gold-light); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.hl-icon { font-size: 1.4rem; flex-shrink: 0; }
.hl-item strong { display: block; font-size: 0.95rem; color: var(--burgundy); margin-bottom: 0.1rem; }
.hl-item p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* ── SERVE GRID ── */
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.serve-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.5rem; background: var(--white);
  border-radius: var(--radius); border: 2px solid var(--gray-line);
  transition: border-color var(--t);
}
.serve-item:hover { border-color: var(--gold); }
.serve-icon {
  font-size: 1.7rem; width: 52px; height: 52px;
  background: var(--gold-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.serve-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--burgundy); }
.serve-item p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.val-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; border: 2px solid var(--gray-line);
  text-align: center; transition: all var(--t);
}
.val-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.val-icon {
  font-size: 2rem; width: 60px; height: 60px;
  background: var(--gold-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.val-card h3 { color: var(--burgundy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.val-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 2px solid var(--gray-line);
  transition: all var(--t);
}
.team-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.team-photo {
  height: 210px; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: var(--burgundy); font-weight: 600;
  border-bottom: 3px solid var(--burgundy);
}
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark);
  display: block; margin-bottom: 0.65rem;
}
.team-info p { font-size: 0.9rem; color: var(--text-muted); }

/* ── CERTS ── */
.cert-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cert-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 2px solid var(--gold-light);
  border-radius: var(--radius); padding: 0.6rem 1.25rem;
  font-size: 0.92rem; font-weight: 600; color: var(--text);
}
.cert-badge .chk { color: var(--green); }

/* ── POSITIONS ── */
.positions-list { display: flex; flex-direction: column; gap: 1rem; }
.pos-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.6rem 2rem; border: 2px solid var(--gray-line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; transition: all var(--t);
}
.pos-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.pos-badge {
  display: inline-block; background: var(--gold-light); color: var(--burgundy);
  border-radius: 50px; padding: 0.2rem 0.8rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.45rem;
}
.pos-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.pos-card p  { font-size: 0.9rem; color: var(--text-muted); }
.pos-meta { display: flex; gap: 1.25rem; margin-top: 0.4rem; font-size: 0.83rem; color: var(--text-muted); flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.c-list { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2rem; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  font-size: 1.2rem; width: 46px; height: 46px;
  background: var(--gold-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-text strong {
  display: block; font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-dark); margin-bottom: 0.2rem;
}
.c-text p  { font-size: 0.96rem; color: var(--text); line-height: 1.55; margin: 0; }
.c-text a  { color: var(--burgundy); }
.c-text a:hover { text-decoration: underline; }
.c-phone { font-size: 1.45rem !important; font-weight: 700 !important; color: var(--burgundy) !important; display: block !important; }

.hours-tbl { border-collapse: collapse; font-size: 0.93rem; width: 100%; max-width: 310px; margin-top: 0.3rem; }
.hours-tbl td { padding: 0.25rem 1rem 0.25rem 0; }
.hours-tbl tr.closed td { color: var(--text-muted); }

.map-box {
  background: var(--gold-light); border-radius: var(--radius);
  min-height: 220px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px dashed var(--gold); color: var(--burgundy);
  font-weight: 600; text-align: center; padding: 2rem; margin-top: 2rem;
}

/* ── FORM ── */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 2px solid var(--gray-line); box-shadow: var(--shadow);
}
.form-card h3 { color: var(--burgundy-deep); margin-bottom: 0.2rem; }
.divider { height: 1px; background: var(--gray-line); margin: 1.4rem 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grp { margin-bottom: 1.1rem; }
.form-grp label {
  display: block; font-size: 0.78rem; font-weight: 700;
  color: var(--text-mid); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 0.4rem;
}
.form-grp input, .form-grp select, .form-grp textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 2px solid var(--gray-line); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--off-white); outline: none; min-height: 48px;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  border-color: var(--burgundy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,31,58,0.10);
}
.form-grp textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1.05rem; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--gold-light); border-radius: var(--radius);
  padding: 1.5rem 1.75rem; border-left: 5px solid var(--gold);
}
.faq-item h4 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--burgundy-dark); }
.faq-item p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.faq-item a  { color: var(--burgundy); font-weight: 700; }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 0.65rem; max-width: 820px; margin: 0 auto; }
.acc-item { border: 2px solid var(--gray-line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t); }
.acc-item.open { border-color: var(--burgundy); }
.acc-trigger {
  width: 100%; background: none; border: none;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; text-align: left; gap: 1rem;
}
.acc-trigger:hover { background: var(--gold-light); }
.acc-trigger h4 { font-size: 1rem; color: var(--text); }
.acc-icon { font-size: 1.5rem; color: var(--burgundy); flex-shrink: 0; transition: transform var(--t); line-height: 1; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--t); padding: 0 1.5rem; }
.acc-item.open .acc-body { max-height: 400px; padding: 0 1.5rem 1.25rem; }
.acc-body p { font-size: 0.96rem; color: var(--text-muted); line-height: 1.75; }
.acc-body a { color: var(--burgundy); font-weight: 700; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step-card {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--gray-line); transition: all var(--t);
}
.step-card:hover { border-color: var(--gold); }
.step-num {
  width: 48px; height: 48px; background: var(--burgundy); color: var(--white);
  border-radius: 50%; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--burgundy); }
.step-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--burgundy); padding: 4.5rem 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-inner p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 520px; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--burgundy-deep); color: rgba(255,255,255,0.75); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 88px; width: auto; margin-bottom: 1.1rem; background: rgba(255,255,255,0.08); border-radius: 50%; padding: 6px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.7; }
.footer-brand a { color: var(--gold); }
.footer-brand a:hover { text-decoration: underline; }
.footer-col h5 {
  color: var(--white); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.58); transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.58); margin-bottom: 0.5rem; line-height: 1.6; }
.footer-phone { font-size: 1.15rem !important; font-weight: 700 !important; color: var(--gold) !important; display: block; margin-top: 0.25rem; }
.footer-phone:hover { text-decoration: underline; }
.footer-bottom { padding: 1.25rem 0; background: rgba(0,0,0,0.3); }
.footer-btm { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.35rem; }

/* ── FLOATING CALL ── */
.floating-call {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--burgundy); color: var(--white);
  padding: 0.85rem 1.4rem; border-radius: 50px;
  font-size: 0.92rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(123,31,58,0.5);
  text-decoration: none; transition: all var(--t);
  animation: pulse 3s ease-in-out infinite;
}
.floating-call:hover { background: var(--burgundy-dark); transform: translateY(-3px); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(123,31,58,0.5); }
  50%       { box-shadow: 0 6px 32px rgba(196,149,30,0.5); }
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .site-header { position: relative; }
  .main-nav, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 3px solid var(--gold);
    padding: 1rem 1.5rem 1.5rem; box-shadow: var(--shadow); z-index: 199;
  }
  .main-nav.open ul { flex-direction: column; gap: 0.2rem; }
  .main-nav.open .nav-cta { display: flex; margin-top: 0.75rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-btns  { flex-direction: column; align-items: flex-start; }
  .two-col    { grid-template-columns: 1fr; gap: 2.5rem; }
  .img-box    { min-height: 220px; }
  .services-grid { grid-template-columns: 1fr; }
  .serve-grid    { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row       { grid-template-columns: 1fr; }
  .cta-inner      { flex-direction: column; text-align: center; }
  .cta-btns       { justify-content: center; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-btm     { flex-direction: column; text-align: center; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail-grid.flip { direction: ltr; }
  .pos-card { flex-direction: column; align-items: flex-start; }
  .floating-call span:not(.fi) { display: none; }
  .floating-call { padding: 0.9rem 1.1rem; }
}
