/* ================================================================
   KIMURA MASSAGE THERAPY & REHAB — Shared Stylesheet
   Fonts: Oswald (headings) + DM Sans (body) — loaded per-page
   Palette: Navy Command — #0F2742 | #E85D04 | #F2F4F8 | #D4DCE8
================================================================ */

/* Skip-to-main accessibility link */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: #0F2742; color: #fff; padding: 10px 18px;
  font-size: 14px; font-weight: 600; z-index: 9999;
  border-radius: 0 0 6px 0; text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 0; }

:root {
  --navy:        #0F2742;
  --navy-dark:   #080F1C;
  --navy-mid:    #0A1E36;
  --navy-light:  #E8EEF5;
  --orange:      #E85D04;
  --orange-dark: #C94D00;
  --bg:          #F2F4F8;
  --white:       #FFFFFF;
  --text:        #0F2742;
  --text-muted:  #3D5070;
  --border:      #D4DCE8;
  --gold:        #F5A623;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section-label {
  display: block; font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(26px, 4vw, 48px);
  font-weight: 700; color: var(--text); line-height: 1.08;
  letter-spacing: .01em; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; background: var(--orange); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 6px; border: 2px solid var(--orange);
  cursor: pointer; transition: background .2s, border-color .2s;
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline {
  display: inline-block; background: transparent; color: var(--navy);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 6px; border: 2px solid var(--navy);
  cursor: pointer; transition: background .2s;
}
.btn-outline:hover { background: var(--navy-light); }

.btn-white {
  display: block; text-align: center; background: var(--white); color: var(--navy);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 16px 28px; border-radius: 6px; border: 2px solid var(--white);
  cursor: pointer; transition: background .2s;
}
.btn-white:hover { background: rgba(255,255,255,.9); }

.btn-white-outline {
  display: block; text-align: center; background: transparent; color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 16px 28px; border-radius: 6px; border: 2px solid rgba(255,255,255,.5);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Header / Nav ── */
header { position: sticky; top: 0; z-index: 100; background: var(--navy); }
nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.nav-logo { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: .02em; white-space: nowrap; line-height: 1.2; }
.nav-logo span { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .05em; font-family: var(--font-body); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links > li > a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.72); transition: color .2s; }
.nav-links > li > a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right .btn-primary { white-space: nowrap; }
.nav-phone { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; box-shadow: 0 12px 40px rgba(15,39,66,.18);
  min-width: 220px; padding: 6px 0; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text-muted) !important; transition: background .15s, color .15s; }
.nav-dropdown-menu a:hover { background: var(--navy-light); color: var(--navy) !important; }

.nav-hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; width: 44px; height: 44px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── Mobile Nav ── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(8,15,28,.6); }
.mobile-nav.open { display: block; }
.mobile-nav-inner { position: absolute; top: 0; right: 0; width: 290px; height: 100%; background: var(--white); padding: 28px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); margin-bottom: 16px; width: 44px; height: 44px; }
.mobile-nav a { display: flex; align-items: center; min-height: 44px; font-size: 17px; font-weight: 500; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }

/* ── Trust Bar ── */
.trust-bar { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.07); }
.trust-bar-inner { display: flex; align-items: stretch; overflow-x: auto; }
.trust-item {
  flex: 1; min-width: 150px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 17px 18px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.88); letter-spacing: .02em;
  border-right: 1px solid rgba(255,255,255,.1); white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

/* ── Breadcrumb ── */
.breadcrumb-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-list li + li::before { content: '/'; color: var(--border); margin-right: 4px; }
.breadcrumb-list a { color: var(--text-muted); transition: color .2s; }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list li:last-child { color: var(--text); font-weight: 500; }

/* ── Page Hero (service pages) ── */
.page-hero { background: var(--navy); padding: 72px 0 68px; border-bottom: none; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.2); letter-spacing: .06em; text-transform: uppercase;
}
.page-hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(30px, 5vw, 62px);
  font-weight: 700; line-height: 1.08; color: #fff;
  letter-spacing: .01em; margin-bottom: 16px; max-width: 760px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 600px; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.page-hero-actions .btn-primary { background: #fff; color: var(--navy); border-color: #fff; }
.page-hero-actions .btn-primary:hover { background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.9); }
.page-hero-actions .btn-outline { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.38); }
.page-hero-actions .btn-outline:hover { background: rgba(255,255,255,.1); }
.page-hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.page-hero-trust span { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.68); }
.page-hero-trust span::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ── Content Sections ── */
.content-section { padding: 72px 0; }
.content-section.bg-white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.content-body h2 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 600; color: var(--text); margin-bottom: 14px; letter-spacing: .01em; }
.content-body p { font-size: 16px; color: var(--text-muted); line-height: 1.72; margin-bottom: 14px; }
.content-body p:last-child { margin-bottom: 0; }

.benefit-list { list-style: none; margin-top: 4px; }
.benefit-list li { font-size: 15px; color: var(--text-muted); padding: 11px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
/* Topic directory grid — clean 3-col rows */
.seo-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin-top: 0;
  border-top: 1px solid var(--border);
}
.seo-link-list li { display: block; }
.seo-link-list li::before { display: none; }
.seo-link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .12s, color .12s, padding-left .15s;
  line-height: 1.4;
}
.seo-link-list li a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .12s;
}
.seo-link-list li a:hover {
  background: var(--navy);
  color: #fff;
  padding-left: 20px;
}
.seo-link-list li a:hover::before {
  color: #fff;
  transform: translateX(3px);
}

.content-body,
.content-panel { height: 100%; }
.content-panel { background: var(--navy-light); border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.content-panel h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 16px; letter-spacing: .01em; }
.content-panel p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.content-panel p:last-child { margin-bottom: 0; }

/* ── Pricing (service pages) ── */
.pricing { padding: 80px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-header { margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.pricing-card { border: 1px solid var(--border); border-radius: 10px; padding: 32px 26px; position: relative; background: var(--bg); transition: border-color .2s, box-shadow .2s; }
.pricing-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(232,93,4,.1); }
.pricing-card.featured { border-color: var(--orange); background: var(--white); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.pricing-duration { font-family: var(--font-head); font-size: 13px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.pricing-price { font-family: var(--font-head); font-size: 50px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.pricing-price sup { font-size: 22px; font-weight: 500; vertical-align: super; line-height: 0; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.55; }
.pricing-includes { list-style: none; margin-bottom: 24px; }
.pricing-includes li { font-size: 14px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.pricing-note { text-align: center; font-size: 14px; color: var(--text-muted); padding: 18px 24px; background: var(--navy-light); border: 1px solid var(--border); border-radius: 8px; line-height: 1.6; }
.pricing-note strong { color: var(--navy); }

/* ── FAQ ── */
.faq { padding: 80px 0; }
.faq.bg-white { background: var(--white); border-top: 1px solid var(--border); }
.faq-header { margin-bottom: 48px; }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .2s; }
.faq-question:hover { color: var(--orange); }
.faq-toggle { width: 24px; height: 24px; background: var(--navy-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; color: var(--navy); font-weight: 700; transition: background .2s, transform .25s; }
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; font-size: 15px; color: var(--text-muted); line-height: 1.7; padding-bottom: 22px; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

/* ── Related Services ── */
.related-services { padding: 72px 0; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.related-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; transition: border-color .2s, box-shadow .2s; color: var(--text); }
.related-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,93,4,.1); }
.related-card-icon { font-size: 26px; flex-shrink: 0; }
.related-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.related-card p { font-size: 13px; color: var(--text-muted); }
.related-arrow { margin-left: auto; color: var(--orange); font-size: 16px; flex-shrink: 0; }

/* ── Booking Panel (service pages) ── */
.booking-section { padding: 72px 0; border-top: 1px solid var(--border); }
.booking-panel { background: var(--navy); border-radius: 12px; padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.booking-panel-text h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: var(--white); letter-spacing: .01em; margin-bottom: 8px; }
.booking-panel-text p { font-size: 15px; color: rgba(255,255,255,.75); max-width: 420px; line-height: 1.65; }
.booking-panel-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Footer ── */
footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 56px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: .01em; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 260px; }
.footer-nap { margin-top: 20px; }
.footer-nap p { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.footer-col h4 { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-rmt-badge { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); padding: 6px 14px; border-radius: 4px; letter-spacing: .04em; }

/* ── Blog Listing ── */
.blog-listing { padding: 80px 0; }
.blog-listing-header { margin-bottom: 52px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s, transform .2s; cursor: pointer; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(15,39,66,.15); border-color: var(--navy); transform: translateY(-4px); }
.blog-card-top { background: var(--navy); padding: 28px; position: relative; }
.blog-card-tag { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.blog-card-top h2 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--white); line-height: 1.25; letter-spacing: .01em; }
.blog-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.blog-card-link { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; font-size: 14px; font-weight: 700; color: var(--white); background: var(--orange); padding: 10px 18px; border-radius: 6px; transition: background .15s; letter-spacing: .02em; }
.blog-card-link:hover { background: #c94f03; }
.blog-card:hover .blog-card-link { background: #c94f03; }

/* ── Article / Blog Post ── */
.article-hero { background: var(--navy); padding: 64px 0 60px; border-bottom: none; }
.article-hero .post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.post-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 4px 10px; border-radius: 4px; }
.post-date, .post-read-time { font-size: 13px; color: rgba(255,255,255,.55); }
.article-hero h1 { font-family: var(--font-head); font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; line-height: 1.08; color: #fff; letter-spacing: .01em; margin-bottom: 16px; max-width: 800px; }
.post-intro { font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 660px; margin-bottom: 28px; }
.post-author { display: flex; align-items: center; gap: 12px; }
.post-author-avatar { width: 42px; height: 42px; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.post-author-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); }
.post-author-title { font-size: 12px; color: rgba(255,255,255,.55); }

.article-layout { padding: 72px 0; }
.article-inner { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }

.article-body h2 { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: var(--text); margin: 40px 0 12px; letter-spacing: .01em; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.article-body p { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.article-body ul { list-style: none; margin-bottom: 20px; }
.article-body ul li { font-size: 16px; color: var(--text-muted); line-height: 1.65; padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.article-body ul li:last-child { border-bottom: none; }
.article-body ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.article-body a { color: var(--orange); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.article-callout { background: var(--navy-light); border: 1px solid var(--border); border-left: 4px solid var(--navy); border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 24px 0; }
.article-callout p { margin: 0; font-size: 15px; color: var(--text); font-weight: 500; line-height: 1.6; }

.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-book { background: var(--navy); border-radius: 10px; padding: 28px 24px; }
.sidebar-book h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sidebar-book p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 20px; }
.sidebar-toc { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.sidebar-toc h4 { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-toc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-toc ul a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.sidebar-toc ul a:hover { color: var(--orange); }

.article-cta { background: var(--navy); border-radius: 12px; padding: 40px; margin-top: 48px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.article-cta-text h3 { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.article-cta-text p { font-size: 15px; color: rgba(255,255,255,.75); margin: 0; }
.article-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.article-body .btn-white,
.article-body .btn-white-outline,
.sidebar-book .btn-white,
.sidebar-book .btn-white-outline {
  text-decoration: none;
  text-underline-offset: 0;
}
.article-body .btn-white,
.sidebar-book .btn-white { color: var(--navy); }
.article-body .btn-white-outline,
.sidebar-book .btn-white-outline { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-phone { display: none !important; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-inner { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .booking-panel { flex-direction: column; text-align: center; }
  .booking-panel-actions { justify-content: center; }
  .article-cta { flex-direction: column; text-align: center; }
  .article-cta-btns { justify-content: center; }
  .seo-link-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-link-list li:nth-child(2n) a { border-right: none; }
}
@media (max-width: 640px) {
  .page-hero { padding: 48px 0; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn-primary,
  .page-hero-actions .btn-outline { text-align: center; width: 100%; }
  .content-section, .pricing, .faq, .related-services, .booking-section, .blog-listing, .article-layout { padding: 52px 0; }
  .trust-bar-inner { flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-right .btn-primary { font-size: 14px !important; padding: 10px 14px !important; min-height: 44px; white-space: nowrap; }
  .breadcrumb-list li:last-child { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .seo-link-list { grid-template-columns: 1fr; }
  .seo-link-list li a { border-right: none; font-size: 14px; min-height: 44px; }
  .section-label,
  .nav-logo span,
  .page-hero-badge,
  .blog-card-tag,
  .post-tag,
  .post-date,
  .post-read-time,
  .post-author-title,
  .blog-card-meta,
  .breadcrumb-list,
  .sidebar-toc h4,
  .footer-col h4,
  .sidebar-toc ul a { font-size: 14px; }
  .trust-item { font-size: 14px; }
  .related-card p,
  .footer-nap p,
  .footer-bottom p,
  .footer-rmt-badge { font-size: 14px; }
  .footer-col ul a { display: inline-flex; align-items: center; min-height: 36px; }
  .breadcrumb-list a { display: inline-flex; align-items: center; min-height: 32px; }
  .service-card > a { display: inline-flex !important; align-items: center; min-height: 44px; font-size: 14px !important; }
  .sidebar-toc ul a { display: inline-flex; align-items: center; min-height: 32px; }
  .sticky-book-bar-actions a { min-height: 44px; font-size: 14px; }
  .article-cta { padding: 32px 24px; }
  .article-cta-btns,
  .article-cta-btns a,
  .sidebar-book a { width: 100%; }
}
@media (max-width: 380px) {
  nav.container { padding: 0 18px; }
  .nav-logo { font-size: 18px; }
  .nav-logo span { font-size: 11px; }
  .nav-right { gap: 10px; }
  .nav-right .btn-primary { display: none; }
}

/* ── Sticky blog booking bar ────────────────────────────────────── */
.sticky-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  background: var(--navy);
  border-top: 3px solid var(--orange);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(15,39,66,.25);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sticky-book-bar.visible { transform: translateY(0); }
.sticky-book-bar-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-book-bar-text span { color: var(--orange); }
.sticky-book-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sticky-book-bar-actions a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 6px; white-space: nowrap;
  transition: background .15s;
}
.sbb-book { background: var(--orange); color: #fff; }
.sbb-book:hover { background: #c94f03; }
.sbb-wa { background: #25D366; color: #fff; }
.sbb-wa:hover { background: #1ebe5d; }
@media (max-width: 640px) {
  .sticky-book-bar { padding: 10px 16px; }
  .sticky-book-bar-text { display: none; }
  .sticky-book-bar-actions a { min-height: 44px; font-size: 14px !important; }
}

/* ── Accessibility: global focus styles ──────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible { outline-color: var(--white); }
.faq-question:focus-visible { outline-color: var(--orange); }
.nav-hamburger:focus-visible { outline-color: var(--orange); }
