/* ==========================================================================
   Bone & Joint Physiotherapy — Design System
   Display: Fraunces (characterful serif, echoes the wordmark)
   Body:    Work Sans (clean, humanist, highly legible on mobile)
   Motif:   the circle from the logo badge, and a soft recovery "arc"
   ========================================================================== */

:root{
  /* Brand red, taken from the logo mark */
  --red-50:  #FDEDED;
  --red-100: #FBD9D9;
  --red-500: #EA2A2F;
  --red-600: #E31E24;
  --red-700: #B8161B;
  --red-800: #8F1013;

  /* Deep teal-ink — the calm, clinical counterweight to the red */
  --teal-900: #0B2B2B;
  --teal-800: #123B3B;
  --teal-600: #1E5B58;
  --teal-100: #E4EFEE;

  /* Neutrals — warm paper, not the generic AI cream */
  --paper:    #F7F5F1;
  --paper-2:  #FFFFFF;
  --ink:      #1A1D1B;
  --ink-60:   #52584F;
  --line:     #E4E1D8;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-1: 0 1px 2px rgba(20,20,15,0.06), 0 8px 24px -12px rgba(20,20,15,0.18);
  --shadow-2: 0 20px 48px -18px rgba(11,43,43,0.35);

  --container: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; line-height:1.12; margin:0 0 .5em; color: var(--teal-900); }
p{ margin:0 0 1em; }
.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
section{ padding: 72px 0; }
@media (max-width: 720px){ section{ padding: 48px 0; } }

:focus-visible{ outline: 3px solid var(--teal-600); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Eyebrow / label ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-700);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width:22px; height:2px; background: var(--red-600); border-radius:2px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-weight:600; font-size:15.5px;
  padding: 12px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor:pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--red-600); color:#fff; box-shadow: var(--shadow-1); }
.btn-primary:hover{ background: var(--red-700); }
.btn-outline{ background: transparent; border-color: var(--teal-900); color: var(--teal-900); }
.btn-outline:hover{ background: var(--teal-900); color:#fff; }
.btn-ghost-light{ background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color:#fff; }
.btn-ghost-light:hover{ background:#fff; color: var(--teal-900); }
.btn-block{ width:100%; }
.btn i{ font-size: .95em; }

/* WhatsApp — recognisable brand green so the action reads instantly */
.btn-whatsapp{ background: #25D366; color:#fff; box-shadow: var(--shadow-1); }
.btn-whatsapp:hover{ background:#1EBE5A; }

/* Call — solid white on dark contexts (header/hero/mobile bar) for max contrast */
.btn-call{ background:#fff; color: var(--red-700); box-shadow: var(--shadow-1); }
.btn-call:hover{ background: var(--red-50); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(247,245,241,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding: 12px 24px; gap: 16px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 52px; width:52px; object-fit:contain; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-family: var(--font-display); font-size: 19px; color: var(--teal-900); letter-spacing: .01em;}
.brand-text span{ font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--red-700); font-weight:700; }

.main-nav{ display:flex; align-items:center; gap: 22px; }
.main-nav ul{ display:flex; gap: 22px; align-items:center; }
.main-nav a{ font-weight:600; font-size: 15px; color: var(--ink); position:relative; padding: 6px 0; }
.main-nav a:hover{ color: var(--red-600); }
.main-nav a.active{ color: var(--red-600); }
.has-dropdown{ position:relative; display:flex; align-items:center; gap:2px; }
.dropdown-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer; color: var(--ink); padding:6px; margin:0; font-size:11px;
  border-radius:6px; line-height:1;
}
.dropdown-toggle:hover{ color: var(--red-600); }
.dropdown-toggle i{ transition: transform .2s ease; display:block; }
.has-dropdown.open .dropdown-toggle i{ transform: rotate(180deg); }
.dropdown{
  position:absolute; top: calc(100% + 10px); left:50%; transform: translateX(-50%) translateY(-6px);
  background:#fff; border-radius: var(--radius-s); box-shadow: var(--shadow-2);
  padding: 10px; min-width: 230px; display:block; border: 1px solid var(--line);
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown{
  opacity:1; visibility:visible; pointer-events:auto; transform: translateX(-50%) translateY(0);
}
.dropdown a{ display:block; padding: 10px 14px; border-radius: 8px; font-weight:500; }
.dropdown a:hover{ background: var(--teal-100); color: var(--teal-900); }
.header-ctas{ display:flex; align-items:center; gap:10px; flex:none; }
.header-ctas .btn{ padding: 11px 18px; font-size:14.5px; }

.nav-drawer-head{ display:none; }
.nav-close{ display:none; }

.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:8px; flex:none; }
.nav-toggle span{ display:block; width:26px; height:2.5px; background: var(--teal-900); margin: 5px 0; border-radius:2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* Backdrop behind the open mobile menu */
.nav-overlay{
  position:fixed; inset:0; background: rgba(11,43,43,.45);
  opacity:0; visibility:hidden; transition: opacity .25s ease, visibility .25s ease; z-index:95;
}
.nav-overlay.show{ opacity:1; visibility:visible; }

/* Header CTA text hides gracefully before things ever get tight */
@media (max-width: 1180px){
  .main-nav{ gap:16px; }
  .main-nav ul{ gap:16px; }
  .header-ctas{ gap:8px; }
  .header-ctas .btn{ padding:10px 14px; font-size:13.5px; }
}
@media (max-width: 1085px){
  .header-ctas .btn-text{ display:none; }
  .header-ctas .btn{ padding:11px; border-radius:50%; }
  .header-ctas .btn i{ font-size:16px; }
}

body.no-scroll{ overflow:hidden; }

@media (max-width: 1024px){
  .header-ctas{ display:none; }
  .nav-toggle{ display:block; }
  .main-nav{
    position: fixed; inset: 0 0 0 auto; right:0; width:min(340px, 86vw); background: var(--paper-2);
    flex-direction: column; align-items:flex-start; padding: 90px 24px 40px;
    overflow-y:auto; transform: translateX(100%); transition: transform .28s ease;
    box-shadow: -12px 0 36px -18px rgba(11,43,43,.45); z-index:96;
  }
  .main-nav.open{ transform: translateX(0); }
  .nav-drawer-head{
    display:flex; align-items:center; justify-content:space-between; width:100%;
    padding-bottom:18px; margin-bottom:10px; border-bottom:1px solid var(--line);
  }
  .nav-drawer-head span{ font-family: var(--font-display); font-weight:600; color: var(--teal-900); font-size:15px; letter-spacing:.04em; text-transform:uppercase; }
  .nav-close{
    display:flex; align-items:center; justify-content:center; width:38px; height:38px;
    border-radius:50%; border:1px solid var(--line); background:#fff; color: var(--teal-900);
    cursor:pointer; font-size:15px; flex:none;
  }
  .nav-close:hover{ background: var(--red-50); border-color: var(--red-100); color: var(--red-600); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; width:100%; gap:0; }
  .main-nav li{ width:100%; border-bottom:1px solid var(--line); }
  .has-dropdown{ flex-wrap:wrap; }
  .main-nav a{ display:block; padding: 15px 4px; font-size:17px; }
  .has-dropdown > a{ flex:1; }
  .dropdown-toggle{ padding:15px 10px; font-size:13px; }
  .dropdown{
    position:static; transform:none !important; box-shadow:none; width:100%; border:none; padding:0 0 6px 12px;
    opacity:1; visibility:visible; pointer-events:auto;
    max-height:0; overflow:hidden; transition: max-height .25s ease;
  }
  .has-dropdown.open .dropdown{ max-height: 420px; }
  .dropdown a{ padding: 11px 14px; }

  /* backdrop-filter makes an element a "containing block" for its fixed-position
     descendants — with it left on, the fixed nav drawer above gets sized against
     the short header bar instead of the full viewport. Switch to a solid header
     background on smaller screens so the drawer positions against the viewport. */
  .site-header{ backdrop-filter: none; background: rgba(247,245,241,.98); }
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta-bar{
  display:none; position: fixed; left:0; right:0; bottom:0; z-index: 200;
  background: var(--teal-900); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.mobile-cta-bar .row{ display:flex; gap:10px; }
.mobile-cta-bar .btn{ flex:1; padding: 10px 10px; font-size:14.5px; }
@media (max-width: 720px){ .mobile-cta-bar{ display:block; } body{ padding-bottom: 60px; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{ position:relative; overflow:hidden; padding: 56px 0 88px; }
.hero::before{
  content:""; position:absolute; top:-180px; right:-180px; width:520px; height:520px;
  border-radius:50%; border: 1px solid var(--line); opacity:.6;
}
.hero::after{
  content:""; position:absolute; top:-80px; right:-80px; width:520px; height:520px;
  border-radius:50%; border: 1px solid var(--line); opacity:.6;
}
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center; position:relative; z-index:1; }
.hero h1{ font-size: clamp(34px, 4.6vw, 54px); }
.hero-lede{ font-size: 18px; color: var(--ink-60); max-width: 52ch; margin-bottom: 30px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 34px; }
.hero-trust{ display:flex; gap: 30px; flex-wrap:wrap; }
.trust-stat{ display:flex; flex-direction:column; }
.trust-stat b{ font-family: var(--font-display); font-size: 26px; color: var(--red-600); }
.trust-stat span{ font-size: 13px; color: var(--ink-60); }

.hero-visual{ position:relative; }
.hero-photo-frame{
  position:relative; border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
  overflow:hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-2); border: 8px solid #fff;
}
.hero-photo-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; bottom: -6px; left: -18px; background:#fff; border-radius: var(--radius-m);
  padding: 16px 20px; box-shadow: var(--shadow-1); display:flex; align-items:center; gap:12px;
  max-width: 240px; border: 1px solid var(--line);
}
.hero-badge .circle{
  width:44px; height:44px; border-radius:50%; background: var(--red-50); color: var(--red-600);
  display:flex; align-items:center; justify-content:center; font-size:20px; flex:none;
}
.hero-badge strong{ display:block; font-size: 14px; color: var(--teal-900); }
.hero-badge small{ font-size:12px; color: var(--ink-60); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ max-width: 320px; margin: 8px auto 0; }
}

/* ==========================================================================
   Recovery pathway — signature element
   ========================================================================== */
.pathway{ background: var(--teal-900); color:#fff; position:relative; overflow:hidden; }
.pathway .container{ position:relative; z-index:1; }
.pathway h2{ color:#fff; }
.pathway .section-intro p{ color: rgba(255,255,255,.72); }
.pathway-track{ position:relative; margin-top: 56px; }
.pathway-line{
  position:absolute; top: 27px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(227,30,36,.75) 20%, rgba(227,30,36,.75) 80%, rgba(255,255,255,.06));
}
.pathway-steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; position:relative; }
.pathway-step{ text-align:center; padding-top: 0; }
.pathway-step .dot{
  width: 56px; height:56px; border-radius:50%; background: var(--red-600); color:#fff;
  display:flex; align-items:center; justify-content:center; margin: 0 auto 20px;
  font-family: var(--font-display); font-size:20px; box-shadow: 0 0 0 6px var(--teal-900), 0 0 0 7px rgba(227,30,36,.4);
  position:relative; z-index:1;
}
.pathway-step h3{ color:#fff; font-size:19px; margin-bottom:8px; }
.pathway-step p{ color: rgba(255,255,255,.66); font-size: 14.5px; margin:0; }
@media (max-width: 860px){
  .pathway-steps{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .pathway-line{ display:none; }
}

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-intro{ max-width: 640px; margin-bottom: 44px; }
.section-intro.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-intro h2{ font-size: clamp(26px, 3.4vw, 38px); }
.section-intro p{ color: var(--ink-60); font-size: 16.5px; }

/* ==========================================================================
   Service cards grid
   ========================================================================== */
.card-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px){ .card-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .card-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: transparent; }
.service-icon{
  width:52px; height:52px; border-radius:50%; background: var(--red-50); color: var(--red-600);
  display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:18px;
}
.service-card h3{ font-size: 20px; margin-bottom: 8px; }
.service-card p{ color: var(--ink-60); font-size: 15px; margin-bottom: 14px; }
.service-card .link{ font-weight:700; color: var(--red-600); font-size:14.5px; display:inline-flex; align-items:center; gap:6px; }
.service-card .link svg{ transition: transform .15s ease; }
.service-card:hover .link svg{ transform: translateX(3px); }

/* ---------- Conditions chip grid ---------- */
.chip-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 860px){ .chip-grid{ grid-template-columns: repeat(2, 1fr); } }
.chip{
  display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line);
  border-radius: 999px; padding: 14px 18px; font-weight:600; font-size:14.5px;
}
.chip span.dot{ width:8px; height:8px; border-radius:50%; background: var(--red-600); flex:none; }

/* ==========================================================================
   Why choose / features
   ========================================================================== */
.feature-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px 32px; }
@media (max-width:720px){ .feature-list{ grid-template-columns: 1fr; } }
.feature{ display:flex; gap: 16px; align-items:flex-start; }
.feature .num{
  font-family: var(--font-display); font-size: 15px; color: var(--red-600); font-weight:700;
  width: 38px; height:38px; border-radius:50%; border:1.5px solid var(--red-100);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.feature h4{ font-size:16.5px; margin-bottom:4px; }
.feature p{ font-size:14.5px; color: var(--ink-60); margin:0; }

/* ==========================================================================
   Two column split (about, service detail)
   ========================================================================== */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap:32px; } }
.split-media img{ border-radius: var(--radius-l); box-shadow: var(--shadow-1); }
.stat-strip{ display:flex; gap: 34px; margin-top: 28px; flex-wrap:wrap; }
.stat-strip .stat b{ display:block; font-family: var(--font-display); font-size: 30px; color: var(--teal-900); }
.stat-strip .stat span{ font-size:13px; color: var(--ink-60); }

/* ==========================================================================
   Testimonials — Google Reviews style
   ========================================================================== */
.google-rating-card{
  max-width:640px; margin:0 auto 40px; background:#fff; border:1px solid var(--line);
  border-radius: var(--radius-m); box-shadow: var(--shadow-1); padding:20px 26px;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.google-rating-left{ display:flex; align-items:center; gap:16px; }
.google-g-icon{ flex:none; display:block; }
.google-rating-row{ display:flex; align-items:center; gap:10px; }
.google-rating-row .rating-num{ font-family: var(--font-display); font-size:40px; font-weight:600; color: var(--teal-900); }
.google-rating-row b{ font-family: var(--font-display); font-size:19px; color: var(--teal-900); }
.google-rating-sub{ font-size:13px; color: var(--ink-60); margin-top:3px; }
.btn-dark{ background: var(--teal-900); color:#fff; }
.btn-dark:hover{ background: var(--teal-800); }

.testi-carousel{ position:relative; display:flex; align-items:stretch; gap:14px; }
.testi-track{
  display:grid; grid-auto-flow:column; grid-auto-columns: minmax(300px, 40%);
  gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding:4px 4px 8px; scrollbar-width:none; flex:1; min-width:0;
}
.testi-track::-webkit-scrollbar{ display:none; }
@media (max-width:900px){ .testi-track{ grid-auto-columns: minmax(260px, 84%); } }
.testi-card{ scroll-snap-align:start; background:#fff; border:1px solid var(--line); border-radius: var(--radius-m); padding: 26px; }
.testi-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:12px; }
.testi-google{ flex:none; margin-top:2px; }
.testi-stars{ color: var(--red-600); letter-spacing:2px; margin-bottom:14px; font-size:14px; }
.testi-card p.quote{ font-size: 15.5px; color: var(--ink); margin-bottom: 0; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:40px; height:40px; border-radius:50%; background: var(--teal-600); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; flex:none;
}
.testi-who strong{ display:block; font-size:14.5px; }
.testi-who span{ font-size:12.5px; color: var(--ink-60); }

.testi-arrow{
  flex:none; align-self:center; width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:#fff;
  display:flex; align-items:center; justify-content:center; cursor:pointer; color: var(--teal-900);
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.testi-arrow:hover{ background: var(--teal-900); color:#fff; }
.testi-arrow:disabled{ opacity:.35; cursor:default; }
.testi-arrow:disabled:hover{ background:#fff; color: var(--teal-900); }
@media (max-width:640px){ .testi-arrow{ display:none; } }

.testi-dots{ display:flex; justify-content:center; gap:8px; margin-top:22px; }
.testi-dots button{ width:8px; height:8px; border-radius:50%; border:none; background: var(--line); padding:0; cursor:pointer; }
.testi-dots button.active{ background: var(--red-600); width:22px; border-radius:5px; transition: width .2s ease, background .2s ease; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  border-radius: var(--radius-l); padding: 52px 48px; color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom: 8px; font-size: clamp(22px,3vw,30px); }
.cta-band p{ color: rgba(255,255,255,.85); margin:0; }
.cta-band .actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding: 20px 4px; font-family: var(--font-display); font-size: 17px; color: var(--teal-900);
}
.faq-q .plus{ font-size: 22px; color: var(--red-600); transition: transform .2s ease; flex:none; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-a p{ padding: 0 4px 20px; color: var(--ink-60); font-size:15px; max-width:65ch; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-l); padding: 34px; box-shadow: var(--shadow-1); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:7px; color: var(--teal-900); }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 15px; border-radius: 10px; border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size:15px; background: var(--paper); color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--red-500); background:#fff; }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color: var(--ink-60); margin-top:10px; }

/* ==========================================================================
   Breadcrumb / page header (service & inner pages)
   ========================================================================== */
.page-header{ background: var(--teal-900); color:#fff; padding: 46px 0 54px; position:relative; overflow:hidden; }
.page-header::after{ content:""; position:absolute; right:-120px; top:-120px; width:340px; height:340px; border-radius:50%; border:1px solid rgba(255,255,255,.14); }
.breadcrumb{ font-size:13.5px; color: rgba(255,255,255,.65); margin-bottom:14px; display:flex; gap:8px; align-items:center; }
.breadcrumb a{ color: rgba(255,255,255,.85); font-weight:600; }
.breadcrumb a:hover{ color:#fff; }
.page-header h1{ color:#fff; font-size: clamp(28px, 4vw, 42px); max-width: 700px; margin-bottom:12px; }
.page-header .lede{ color: rgba(255,255,255,.72); max-width: 640px; font-size:16.5px; }

/* ---------- service page header: text + connecting photo ---------- */
.svc-header-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:44px; align-items:center; }
.svc-icon-badge{
  width:56px; height:56px; border-radius:50%; background: rgba(227,30,36,.16); color:#ff8f8f;
  display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:18px;
}
.svc-header-photo{ position:relative; }
.svc-header-photo img{
  width:100%; aspect-ratio: 4/3.1; object-fit:cover; border-radius: var(--radius-l);
  border: 6px solid rgba(255,255,255,.14); box-shadow: var(--shadow-2);
}
.svc-photo-badge{
  position:absolute; left:18px; bottom:-18px; right:18px; background:#fff; color: var(--teal-900);
  border-radius: var(--radius-s); padding: 13px 16px; box-shadow: var(--shadow-1);
  display:flex; align-items:center; gap:10px; font-size:13.5px; font-weight:600;
}
.svc-photo-badge i{ color: var(--red-600); font-size:16px; flex:none; }
@media (max-width: 900px){
  .svc-header-grid{ grid-template-columns: 1fr; }
  .svc-header-photo{ order:-1; max-width:380px; margin:0 auto 30px; }
}

/* ---------- symptom / cause list ---------- */
.tick-list{ display:flex; flex-direction:column; gap:14px; }
.tick-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15.5px; }
.tick-list .tick{
  width:24px; height:24px; border-radius:50%; background: var(--teal-100); color: var(--teal-800);
  display:flex; align-items:center; justify-content:center; font-size:13px; flex:none; margin-top:2px;
}

/* ---------- related services ---------- */
.related-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width:860px){ .related-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .related-grid{ grid-template-columns: 1fr; } }
.related-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-m); padding:20px 18px;
  font-weight:700; font-size:14.5px; color: var(--teal-900);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  box-shadow: var(--shadow-1); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.related-card > span:first-child{ display:flex; align-items:center; gap:12px; line-height:1.3; }
.related-card i{
  width:38px; height:38px; border-radius:50%; background: var(--red-50); color: var(--red-600);
  display:flex; align-items:center; justify-content:center; font-size:15px; flex:none;
}
.related-card > span:last-child{ color: var(--red-600); font-size:17px; flex:none; transition: transform .18s ease; }
.related-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; color: var(--teal-900); }
.related-card:hover > span:last-child{ transform: translateX(4px); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--teal-900); color: rgba(255,255,255,.78); padding-top: 56px; }
.footer-cta{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-l); padding: 30px 34px; margin-bottom: 48px;
}
.footer-cta h3{ color:#fff; font-size: 22px; margin-bottom:4px; }
.footer-cta p{ color: rgba(255,255,255,.66); margin:0; font-size:14.5px; }
.footer-cta .actions{ display:flex; gap:12px; flex-wrap:wrap; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;  padding-bottom: 44px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; gap:12px; align-items:center; margin-bottom:14px; }
.footer-brand img{ height:44px; width:44px; }
.footer-brand strong{ font-family: var(--font-display); color:#fff; font-size:18px; }
.site-footer h5{ color:#fff; font-family: var(--font-body); font-size:14px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.site-footer ul li{ margin-bottom:10px; }
.site-footer a:hover{ color:#fff; }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; }
.footer-contact li i{ color: var(--red-500); width:16px; margin-top:3px; flex:none; }
.footer-bottom{ display:flex; justify-content:space-between; padding: 22px 0; font-size:13px; color: rgba(255,255,255,.55); flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color: rgba(255,255,255,.55); }
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; font-size:15px; color:#fff;
}
.social-row a:hover{ background: var(--red-600); border-color: var(--red-600); color:#fff; }
@media (max-width: 560px){ .footer-cta{ flex-direction:column; align-items:flex-start; } .footer-cta .actions{ width:100%; } .footer-cta .actions .btn{ flex:1; } }

/* ==========================================================================
   Utility
   ========================================================================== */
.bg-white{ background: var(--paper-2); }
.bg-teal{ background: var(--teal-100); }
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.small{ font-size:14.5px; color:#cdcdcd; }

.visually-hidden{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.visually-hidden:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; z-index:1000;
  background:#fff; padding:12px 18px; border-radius:8px; box-shadow: var(--shadow-2);
}


.profile-list ul{
    display:flex;
    flex-wrap:wrap;
    gap:10px;

}

.profile-list ul li{
    width: 24.3%;
    list-style: none;
}

.model-box {
    position: relative;
    aspect-ratio: 3 / 4;
       background: #e31e24;
    border: 1px solid rgb(227 57 135);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    transform: translateZ(0);
    border-radius: 20px;
}
.model-box:hover {
    border-color: #d4a52866;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px #d4a5281a;
}
.model-box .img{
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    transform: translateZ(0);
}
.model-box .img:before{
    position: absolute;
    content: '';
    /*background: linear-gradient( to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 28%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 75% );*/
     bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.model-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px 20px 0px 0px;
}
.model-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
    
}
.model-info .h4 {
    color: #ffffff;
    font-size: 23px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}
.model-info p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
    background: #5c0607;
    display: inline-block;
    padding: 0px 20px;
    border-radius: 10px;
}

.profile-s-description {
    padding: 10px 20px;
    text-align: center;
}
.profile-s-description .name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}
.profile-s-description p {
    color: #99a1af;
    font-size: 14px;
    padding-bottom: 20px;
}
p.location-name {
    color: #d4a528;
    font-size: 14px;
    padding-bottom: 0px;
}
.profile-s-description p span {
    color: #000;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: linear-gradient(135deg, #d4a528, #b8860b);
    border-radius: 9999px;
    padding: .75rem 2rem;
    font-size: .875rem;
    font-weight: 600;
    transition: all .3s;
    /* margin-top: 65px; */
}

.star {
    background-image: url(images/star.svg);
    background-size: contain;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin: 0 1px;
}
.tag {
    width: 56px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 60px;
    background: linear-gradient(180deg, #A90000 0%, #F24A4A 100%);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.model-box:hover img {
    transform: translateY(-6px);

}


.white {
    color: #000000;
    font-size: 38px;
    line-height: 60px;
    text-align: center;
}


@media (max-width: 767px) {
    .profile-list ul li {
        width: 100%;
        list-style: none;
    }
}


.profile
{background: #e31e240f!important;}

p>a{
  color: #b8161b;
}