/* ============================================================
   OSGOOD MOVEMENT — MAIN STYLESHEET
   262 Studios · 2026
   ============================================================ */

/* ── BRAND TOKENS ── */
:root {
  --navy:       #112A34;
  --navy-deep:  #021017;
  --navy-mid:   #041F27;
  --teal:       #016374;
  --teal-lt:    #00869B;
  --coral:      #D56D56;
  --coral-lt:   #FFAF92;
  --cream:      #F4F3E9;
  --cream-2:    #E3E2CD;
  --white:      #FFFFFF;
  --page-bg:    #EDECEA;
  --max:        1200px;
  --pad:        80px;
  --r-sm:       6px;
  --r-md:       10px;
  --r-lg:       18px;
  --r-pill:     100px;
  --ff-h:       'Archivo', sans-serif;
  --ff-b:       'Work Sans', sans-serif;
  --ease:       0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--page-bg); color: var(--navy); font-size: 16px; line-height: 1.7; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-h); line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sec { padding: 88px 0; }
.sec-sm { padding: 56px 0; }
.sec-xs { padding: 36px 0; }
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-deep   { background: var(--navy-deep); }
.bg-teal   { background: var(--teal); }
.bg-coral  { background: var(--coral); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 52px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex-sb { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* ── TYPOGRAPHY ── */
.t-disp { font-family: var(--ff-h); font-size: clamp(36px,5.5vw,68px); font-weight: 900; line-height: 1.0; letter-spacing: -0.025em; }
.t-h1   { font-family: var(--ff-h); font-size: clamp(28px,4vw,52px);  font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; }
.t-h2   { font-family: var(--ff-h); font-size: clamp(22px,3vw,36px);  font-weight: 700; line-height: 1.1;  letter-spacing: -0.015em; }
.t-h3   { font-family: var(--ff-h); font-size: clamp(17px,2vw,22px);  font-weight: 700; line-height: 1.2; }
.t-h4   { font-family: var(--ff-h); font-size: 17px; font-weight: 600; }
.t-lead { font-size: clamp(16px,2vw,18px); line-height: 1.75; }
.t-body { font-size: 16px; line-height: 1.75; }
.t-sm   { font-size: 14px; line-height: 1.65; }
.t-xs   { font-size: 12px; line-height: 1.6; }
.cc   { color: var(--cream); }
.cmd  { color: rgba(244,243,233,.65); }
.cm   { color: rgba(17,42,52,.56); }

/* ── SECTION LABEL ── */
.slabel {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-b); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(17,42,52,.52); margin-bottom: 14px;
}
.slabel::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 1px; background: var(--coral); flex-shrink: 0; }
.slabel.lt { color: rgba(244,243,233,.55); }
.slabel.lt::before { background: var(--coral-lt); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-b); font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: var(--r-pill); transition: var(--ease); white-space: nowrap; cursor: pointer; border: none; }
.btn-coral  { background: var(--coral);  color: var(--cream); }
.btn-coral:hover  { background: #bf5f45; }
.btn-navy   { background: var(--navy);   color: var(--cream); }
.btn-navy:hover   { background: var(--navy-mid); }
.btn-ghost  { background: transparent;  color: var(--cream); border: 1.5px solid rgba(244,243,233,.38); }
.btn-ghost:hover  { border-color: var(--cream); background: rgba(244,243,233,.07); }
.btn-out    { background: transparent;  color: var(--navy);  border: 1.5px solid rgba(17,42,52,.28); }
.btn-out:hover    { border-color: var(--navy); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── FLOATING NAV ── */
.site-nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px var(--pad);
  pointer-events: none;
}
.site-nav-wrap.scrolled { padding: 12px var(--pad); }
.site-nav {
  max-width: var(--max); margin: 0 auto;
  background: rgba(17,42,52,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  padding: 10px 14px 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border: .5px solid rgba(244,243,233,.1);
  box-shadow: 0 8px 32px rgba(2,16,23,.35);
  pointer-events: all;
  transition: var(--ease);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 34px; height: 34px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark img { width: 34px; height: 34px; object-fit: contain; border-radius: 50%; }
.nav-logo-mark-fallback { font-family: var(--ff-h); font-size: 12px; font-weight: 800; color: var(--cream); }
.nav-logo-full { height: 30px; width: auto; display: block; }
.nav-logo-full-mobile { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }

/* Nav item + dropdown */
.nav-item { position: relative; }
.nav-item > a, .nav-item > span {
  font-family: var(--ff-b); font-size: 13px;
  color: rgba(244,243,233,.78);
  padding: 8px 14px; border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 4px;
  transition: var(--ease); cursor: pointer;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item > span:hover { color: var(--cream); background: rgba(244,243,233,.07); }
.nav-item.has-dd > a::after,
.nav-item.has-dd > span::after { content: '▾'; font-size: 9px; opacity: .5; transition: transform var(--ease); }
.nav-item.has-dd:hover > a::after,
.nav-item.has-dd:hover > span::after { transform: rotate(180deg); }

/*
  Dropdown — extended hover area prevents menu from closing
  when cursor travels from link to dropdown items.
  ::before creates an invisible bridge.
*/
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px; /* invisible gap — keeps menu open while cursor moves down */
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 1001;
}
.nav-item.has-dd:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-inner {
  background: rgba(17,42,52,.98);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 6px;
  min-width: 200px;
  border: .5px solid rgba(244,243,233,.1);
  box-shadow: 0 12px 40px rgba(2,16,23,.45);
}
.nav-dd-item {
  display: block; font-family: var(--ff-b); font-size: 13px;
  color: rgba(244,243,233,.72); padding: 9px 14px;
  border-radius: var(--r-sm); transition: var(--ease); white-space: nowrap;
}
.nav-dd-item:hover { color: var(--cream); background: rgba(244,243,233,.08); }
.nav-dd-item.coral { color: var(--coral-lt); }
.nav-dd-item.teal  { color: rgba(0,134,155,.9); font-size: 12px; }
.nav-dd-divider { height: .5px; background: rgba(244,243,233,.1); margin: 4px 0; }
.nav-cta {
  background: var(--coral); color: var(--cream);
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: var(--r-pill);
  margin-left: 6px; white-space: nowrap; transition: var(--ease);
}
.nav-cta:hover { background: #bf5f45; }
.nav-mobile-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--cream); margin: 4px 0; border-radius: 2px; transition: var(--ease); }

/* ── HERO ── */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(110deg,var(--navy-deep) 0%,#064555 55%,var(--teal) 100%); }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; }
.hero-cnt { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 130px var(--pad) 80px; width: 100%; }
.hero-inner { max-width: 620px; }
.hero-sub { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-line { width: 32px; height: 2px; background: var(--coral); border-radius: 2px; flex-shrink: 0; }
.hero-sub-t { font-family: var(--ff-b); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(244,243,233,.55); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.hero-sm { min-height: 340px; }
.hero-sm .hero-cnt { padding-top: 110px; padding-bottom: 48px; }

/* ── IMAGE PLACEHOLDERS (replaced by real images via ACF) ── */
.img-ph { display: flex; align-items: center; justify-content: center; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(135deg,var(--navy) 0%,var(--teal) 100%); color: rgba(244,243,233,.3); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

/* ── PILLAR BOXES ── */
.pnum { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-h); font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.p-box { border-radius: var(--r-lg); padding: 32px; }
.p-box.tl { background: rgba(1,99,116,.08);  border: .5px solid rgba(1,99,116,.14); }
.p-box.co { background: rgba(213,109,86,.08); border: .5px solid rgba(213,109,86,.14); }
.p-box.nv { background: rgba(17,42,52,.06);  border: .5px solid rgba(17,42,52,.1); }

/* ── SERVICE CAROUSEL ── */
.svc-rail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; cursor: grab; align-items: flex-start; }
.svc-rail:active { cursor: grabbing; }
.svc-rail::-webkit-scrollbar { display: none; }
.svc-card { flex: 0 0 calc(25% - 15px); min-width: 260px; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: .5px solid rgba(17,42,52,.08); scroll-snap-align: start; display: flex; flex-direction: column; transition: transform var(--ease), box-shadow var(--ease); }
.svc-card { flex: 0 0 calc(25% - 15px); min-width: 260px; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: .5px solid rgba(17,42,52,.08); scroll-snap-align: start; display: flex; flex-direction: column; justify-content: flex-start; align-self: flex-start; transition: transform var(--ease), box-shadow var(--ease); }
.svc-card-img { width: 100%; height: 180px; object-fit: cover; }
.svc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 0 0 auto; gap: 2px; }
.svc-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--r-pill); margin-bottom: 6px; }
.svc-tag.rv { background: rgba(0,134,155,.3); color: #F4F3E9; }
.svc-tag.rc { background: rgba(213,109,86,.3); color: #F4F3E9; }
.svc-tag.rs { background: rgba(244,243,233,.15); color: #F4F3E9; }
.svc-name { font-family: var(--ff-h); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.svc-lnk { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--coral); display: inline-flex; align-items: center; gap: 4px; }

/* ── REVIEWS ── */
.rev-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.rev-card { background: var(--white); border-radius: var(--r-lg); padding: 26px; border: .5px solid rgba(17,42,52,.07); display: flex; flex-direction: column; }
.rev-card.tall { grid-row: span 2; }
.rev-stars { color: var(--coral); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-text { font-size: 15px; line-height: 1.72; color: var(--navy); font-style: italic; flex: 1; margin-bottom: 20px; }
.rev-auth { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: .5px solid rgba(17,42,52,.07); }
.rev-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--cream); flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.rev-date { font-size: 11px; color: rgba(17,42,52,.4); }

/* ── PROFILE CARDS ── */
.prof-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: .5px solid rgba(17,42,52,.07); transition: var(--ease); }
.prof-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(17,42,52,.1); }
.prof-card img { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.prof-info { padding: 20px 22px; }
.prof-name { font-family: var(--ff-h); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.prof-role { font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 9px; }
.prof-bio  { font-size: 13px; color: rgba(17,42,52,.6); line-height: 1.62; margin-bottom: 12px; }
.prof-lnk  { font-size: 13px; font-weight: 600; color: var(--coral); display: inline-flex; align-items: center; gap: 4px; }

/* ── FAQ ── */
.faq-item { border-bottom: .5px solid rgba(17,42,52,.09); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 19px 0; font-family: var(--ff-b); font-size: 16px; font-weight: 500; color: var(--navy); cursor: pointer; gap: 16px; }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: var(--ease); }
.faq-a { font-size: 15px; color: rgba(17,42,52,.6); line-height: 1.72; padding-bottom: 18px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-ico { background: var(--coral); color: var(--cream); }

/* ── INSURANCE GRID ── */
.ins-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; }
.ins-tile { background: var(--white); border: .5px solid rgba(17,42,52,.1); border-radius: var(--r-md); padding: 14px 10px; text-align: center; font-family: var(--ff-h); font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--navy); }
.ins-tile img { height: 30px; width: auto; object-fit: contain; margin: 0 auto; }

/* ── CTA STRIP ── */
.cta-strip { padding: 72px 0; }
.cta-inner { max-width: 560px; margin: 0 auto; text-align: center; }

/* ── CLINIKO EMBED ── */
.clin-wrap { background: var(--white); border-radius: var(--r-lg); border: .5px solid rgba(17,42,52,.1); padding: 40px; }
.clin-frame { border-radius: var(--r-md); margin-top: 24px; overflow: hidden; }
.clin-frame iframe { width: 100%; min-height: 600px; border: none; display: block; }

/* ── BLOG CARDS ── */
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: .5px solid rgba(17,42,52,.07); transition: var(--ease); }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(17,42,52,.08); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-body { padding: 20px 22px; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.bcat { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--r-pill); }
.bcat.inj { background: rgba(213,109,86,.12); color: var(--coral); }
.bcat.per { background: rgba(1,99,116,.1);   color: var(--teal); }
.bcat.rec { background: rgba(17,42,52,.07);  color: var(--navy); }
.bcat.edu { background: rgba(1,99,116,.08);  color: var(--teal); }
.bcat.mov { background: rgba(17,42,52,.05);  color: var(--navy); }
.bdate { font-size: 12px; color: rgba(17,42,52,.4); }
.blog-title { font-family: var(--ff-h); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.blog-exc { font-size: 14px; color: rgba(17,42,52,.62); line-height: 1.65; margin-bottom: 14px; }
.blog-foot { display: flex; align-items: center; gap: 8px; border-top: .5px solid rgba(17,42,52,.07); padding-top: 14px; }
.blog-av { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.blog-av img { width: 100%; height: 100%; object-fit: cover; }
.blog-aname { font-size: 12px; font-weight: 500; color: var(--navy); flex: 1; }
.blog-read  { font-size: 12px; color: rgba(17,42,52,.38); }
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.cat-tab { font-family: var(--ff-b); font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: var(--r-pill); border: .5px solid rgba(17,42,52,.18); color: rgba(17,42,52,.62); cursor: pointer; transition: var(--ease); }
.cat-tab.active, .cat-tab:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.blog-search { display: flex; align-items: center; background: var(--white); border: .5px solid rgba(17,42,52,.16); border-radius: var(--r-pill); overflow: hidden; margin-left: auto; height: 40px; }
.blog-search input { border: none; background: transparent; font-family: var(--ff-b); font-size: 13px; color: var(--navy); padding: 0 16px; outline: none; width: 180px; }
.blog-search input::placeholder { color: rgba(17,42,52,.35); }
.blog-search-btn { background: var(--navy); border: none; color: var(--cream); padding: 0 16px; font-size: 13px; cursor: pointer; height: 100%; display: flex; align-items: center; }

/* ── BLOG POST ── */
.post-hero { background: var(--navy-deep); padding: 140px var(--pad) 64px; }
.post-hero-inner { max-width: var(--max); margin: 0 auto; max-width: 760px; }
.post-body-wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: flex-start; }
.post-content { padding: 64px 0; }
.post-content p { font-size: 17px; line-height: 1.85; color: rgba(17,42,52,.78); margin-bottom: 24px; }
.post-content h2 { font-family: var(--ff-h); font-size: 24px; font-weight: 700; color: var(--navy); margin: 40px 0 16px; }
.post-content h3 { font-family: var(--ff-h); font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.post-content blockquote { border-left: 3px solid var(--coral); padding: 16px 20px; background: var(--cream); border-radius: 0 var(--r-md) var(--r-md) 0; margin: 28px 0; font-style: italic; font-size: 18px; color: var(--navy); line-height: 1.65; }
.post-content img { width: 100%; border-radius: var(--r-lg); margin: 32px 0; }
.post-sidebar { padding: 64px 0; position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border-radius: var(--r-lg); padding: 24px; border: .5px solid rgba(17,42,52,.08); margin-bottom: 20px; }
.sidebar-title { font-family: var(--ff-h); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: .5px solid rgba(17,42,52,.08); }
.author-card { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-top: .5px solid rgba(17,42,52,.08); margin-top: 40px; }
.author-card img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { font-family: var(--ff-h); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.author-bio { font-size: 13px; color: rgba(17,42,52,.55); line-height: 1.55; }

/* ── SPEC/CRED TAGS ── */
.tag-teal  { display: inline-block; background: rgba(1,99,116,.1);  color: var(--teal);  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--r-pill); margin: 4px 4px 4px 0; border: .5px solid rgba(1,99,116,.15); }
.tag-coral { display: inline-block; background: rgba(213,109,86,.1); color: var(--coral); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--r-pill); margin: 4px 4px 4px 0; border: .5px solid rgba(213,109,86,.2); }
.tag-dark  { display: inline-block; background: rgba(244,243,233,.1); color: rgba(244,243,233,.8); font-size: 12px; font-weight: 500; padding: 5px 13px; border-radius: var(--r-pill); margin: 4px 4px 4px 0; }

/* ── CONTACT ── */
.form-card { background: var(--white); border-radius: var(--r-lg); padding: 36px; border: .5px solid rgba(17,42,52,.08); height: 100%; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.f-group { margin-bottom: 18px; }
.f-lbl { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.f-lbl .req { color: var(--coral); margin-left: 2px; }
.f-ctrl { width: 100%; background: var(--cream); border: .5px solid rgba(17,42,52,.14); border-radius: var(--r-md); padding: 13px 16px; font-family: var(--ff-b); font-size: 15px; color: var(--navy); outline: none; transition: var(--ease); appearance: none; }
.f-ctrl:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(1,99,116,.08); }
.f-ctrl::placeholder { color: rgba(17,42,52,.3); }
.f-ctrl.ta { min-height: 110px; resize: vertical; }
select.f-ctrl { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23112A34' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.f-hint { font-size: 12px; color: rgba(17,42,52,.4); margin-top: 5px; }
.f-divider { height: .5px; background: rgba(17,42,52,.07); margin: 22px 0; }
.f-submit { width: 100%; background: var(--coral); color: var(--cream); font-family: var(--ff-h); font-size: 15px; font-weight: 700; padding: 16px 28px; border-radius: var(--r-pill); border: none; cursor: pointer; transition: var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; }
.f-submit:hover { background: #bf5f45; }
.f-privacy { text-align: center; font-size: 12px; color: rgba(17,42,52,.38); margin-top: 12px; }
.f-privacy a { color: var(--teal); }
.info-card { background: var(--white); border-radius: var(--r-lg); padding: 24px 28px; border: .5px solid rgba(17,42,52,.07); margin-bottom: 16px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: .5px solid rgba(17,42,52,.06); }
.info-row:last-child { border: none; padding-bottom: 0; }
.info-ico { width: 34px; height: 34px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.info-lbl { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(17,42,52,.38); margin-bottom: 2px; }
.info-val { font-size: 14px; font-weight: 500; color: var(--navy); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 16px; }
.map-wrap iframe { width: 100%; height: 220px; border: none; display: block; }
.hours-card { background: var(--white); border-radius: var(--r-lg); padding: 20px 24px; border: .5px solid rgba(17,42,52,.07); }
.hours-ttl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(17,42,52,.38); margin-bottom: 12px; }
.h-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: .5px solid rgba(17,42,52,.06); font-size: 13px; }
.h-row:last-child { border: none; }
.h-day { font-weight: 500; color: var(--navy); }
.h-time { color: rgba(17,42,52,.55); }
.h-closed { color: rgba(17,42,52,.28); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-mid); padding: 48px 60px 0; }
.f-inner { max-width: var(--max); margin: 0 auto; }
.f-top { display: flex; align-items: stretch; justify-content: space-between; gap: 40px; }
.f-brand { width: 260px; flex-shrink: 0; display: flex; flex-direction: column; }
.f-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f-logo-mark { width: 36px; height: 36px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-h); font-size: 12px; font-weight: 800; color: var(--cream); flex-shrink: 0; }
.f-logo-mark img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }
.f-logo-full { height: 28px; width: auto; display: block; }
.f-logo-txt { font-family: var(--ff-h); font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--cream); text-transform: uppercase; }
.f-tagline { font-size: 13px; color: rgba(244,243,233,.42); line-height: 1.65; margin-bottom: 20px; }
.f-socials { display: flex; gap: 8px; margin-top: auto; }
.soc { width: 32px; height: 32px; border-radius: var(--r-sm); background: rgba(244,243,233,.06); border: .5px solid rgba(244,243,233,.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--ease); }
.soc:hover { background: rgba(244,243,233,.12); }
.soc svg { width: 14px; height: 14px; fill: rgba(244,243,233,.65); }
.f-right { display: flex; align-items: flex-end; gap: 100px; }
.f-links { flex-shrink: 0; display: flex; flex-direction: column; }
.f-col-title { font-family: var(--ff-b); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,243,233,.34); height: 20px; display: flex; align-items: center; margin-bottom: 10px; }
.f-ql-grid { display: inline-grid; grid-template-columns: auto auto; column-gap: 24px; row-gap: 0; }
.f-ql { display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(244,243,233,.55); padding: 5px 0; white-space: nowrap; transition: var(--ease); }
.f-ql:hover { color: var(--cream); }
.f-ql.cta { color: var(--coral-lt); }
.hub { width: 100%; margin-top: 14px; display: flex; align-items: center; gap: 8px; background: rgba(1,99,116,.14); border: .5px solid rgba(1,99,116,.28); border-radius: var(--r-md); padding: 9px 14px; font-family: var(--ff-b); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(0,134,155,.9); white-space: nowrap; transition: var(--ease); }
.hub:hover { background: rgba(1,99,116,.22); color: var(--teal-lt); }
.hub-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-lt); flex-shrink: 0; }
.f-connect { width: 260px; flex-shrink: 0; display: flex; flex-direction: column; }
.f-connect .f-col-title { height: 20px; display: flex; align-items: center; margin-bottom: 10px; }
.f-desc { font-size: 13px; color: rgba(244,243,233,.45); line-height: 1.62; margin-bottom: 13px; flex: 1; }
.f-input-row { display: flex; gap: 7px; width: 260px; }
.f-email-inp { flex: 1; min-width: 0; background: rgba(244,243,233,.06); border: .5px solid rgba(244,243,233,.12); border-radius: var(--r-md); padding: 10px 12px; font-family: var(--ff-b); font-size: 12px; color: var(--cream); outline: none; transition: var(--ease); }
.f-email-inp::placeholder { color: rgba(244,243,233,.26); }
.f-email-inp:focus { border-color: rgba(244,243,233,.3); }
.f-join { flex-shrink: 0; background: var(--coral); color: var(--cream); font-family: var(--ff-b); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 10px 16px; border-radius: var(--r-md); border: none; cursor: pointer; transition: var(--ease); }
.f-join:hover { background: #bf5f45; }
.f-divider { height: .5px; background: rgba(244,243,233,.08); margin-top: 28px; }
.f-bottom { padding: 14px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.f-bottom-left { display: flex; align-items: center; gap: 0; }
.f-copy { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(244,243,233,.24); white-space: nowrap; }
.f-sep { font-size: 10px; color: rgba(244,243,233,.16); padding: 0 10px; }
.f-legal { display: flex; align-items: center; gap: 0; }
.f-leg { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(244,243,233,.24); white-space: nowrap; cursor: pointer; transition: var(--ease); }
.f-leg:hover { color: rgba(244,243,233,.55); }
.f-dot { font-size: 10px; color: rgba(244,243,233,.16); padding: 0 8px; }
.f-creds { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.cred { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(244,243,233,.35); background: rgba(244,243,233,.05); border-radius: var(--r-sm); padding: 4px 9px; border: .5px solid rgba(244,243,233,.08); transition: var(--ease); }
.cred.lnk { cursor: pointer; }
.cred.lnk:hover { color: rgba(244,243,233,.72); }
.cred.c262 { color: rgba(213,109,86,.65); background: rgba(213,109,86,.06); border-color: rgba(213,109,86,.14); cursor: pointer; }
.cred.c262:hover { color: var(--coral-lt); }

/* ── WRAPPERS FOR CONTENT PAGES ── */
.page-hero-offset { padding-top: 74px; } /* offset for fixed nav */

/* ── RESPONSIVE ── */
/* LG 992–1199 */
@media (max-width: 1199px) {
  :root { --pad: 56px; }
  .footer-main { grid-template-columns: 200px 1fr 1fr; gap: 36px; }
  .f-right { gap: 60px; }
}
/* MD 768–991 */
@media (max-width: 991px) {
  :root { --pad: 48px; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .rev-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .rev-card.tall { grid-row: span 1; }
  .ins-grid { grid-template-columns: repeat(4,1fr); }
  .f-top { flex-direction: column; gap: 32px; }
  .f-brand { width: 100%; }
  .f-right { align-items: flex-start; flex-wrap: wrap; gap: 32px; }
  .f-socials { margin-top: 0; }
  .f-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .f-bottom-left { flex-wrap: wrap; }
  .svc-card { flex: 0 0 calc(50% - 10px); }
  .hero { min-height: 480px; }
  .hero-cnt { padding: 110px var(--pad) 60px; }
  .f-row { grid-template-columns: 1fr; }
  .post-body-wrap { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .nav-links .nav-item:not(:last-child):not(.nav-item:nth-last-child(2)) { display: none; }
  .site-footer { padding: 40px var(--pad) 0; }
}
/* SM 576–767 */
@media (max-width: 767px) {
  :root { --pad: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .ins-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .f-right { flex-direction: column; gap: 24px; }
  .f-connect { width: 100%; }
  .f-input-row { width: 100%; }
  .svc-card { flex: 0 0 80vw; }
  .hero { min-height: 440px; }
  .hero-cnt { padding: 100px var(--pad) 48px; }
  .cta-strip { padding: 48px 0; }
  .cat-tabs { flex-direction: column; align-items: flex-start; }
  .blog-search { margin-left: 0; margin-top: 8px; width: 100%; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .site-footer { padding: 36px var(--pad) 0; }
  .f-links { width: 100%; }
  .f-ql-grid { grid-template-columns: 1fr 1fr; width: 100%; }
  .hub { width: 100%; }
}
/* XS < 576 */
@media (max-width: 575px) {
  :root { --pad: 20px; }
  .ins-grid { grid-template-columns: repeat(2,1fr); }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .nav-logo-full { display: none; }
  .nav-logo-full-mobile { display: block; height: 28px; }
  .f-ql-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .f-row { grid-template-columns: 1fr; }
}

/* Mobile nav open state */
.mobile-nav-open .nav-links {
  display: flex; flex-direction: column; align-items: flex-start;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  padding: 80px var(--pad) 40px;
  gap: 8px; z-index: 999; overflow-y: auto;
}
.mobile-nav-open .nav-item { width: 100%; }
.mobile-nav-open .nav-item > a { font-size: 20px; padding: 12px 0; width: 100%; }
.mobile-nav-open .nav-dropdown { position: static; opacity: 1; pointer-events: all; transform: none; padding-top: 0; }
.mobile-nav-open .nav-dropdown-inner { background: rgba(244,243,233,.05); margin-top: 4px; }
.mobile-nav-open .nav-cta { margin: 16px 0 0; width: 100%; justify-content: center; font-size: 16px; padding: 14px; }
