/* ==========================================================================
   Kent Healthcare — design system
   Layout language: modern hospital site (Aster-style).
   Palette: Kent brand teal #008598 + gold #e1c162 on white.
   Typography: Jiho (display, self-hosted from kenthealthcare.ae) + Public Sans.
   ========================================================================== */

@font-face { font-family: "Jiho"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/jiho-medium.otf") format("opentype"); }
@font-face { font-family: "Jiho"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/jiho-softmedium.otf") format("opentype"); }
@font-face { font-family: "Jiho"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/assets/fonts/jiho-regular.otf") format("opentype"); }
@font-face { font-family: "Jiho"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/jiho-extrabold.otf") format("opentype"); }

:root {
  --teal: #008598;          /* primary brand */
  --teal-dark: #016c7c;     /* links, hover */
  --teal-900: #014b56;      /* footer / deep band */
  --teal-50: #eef7f8;       /* soft tint backgrounds */
  --teal-100: #dceef0;
  --gold: #e1c162;          /* accent */
  --gold-dark: #d3ae3a;     /* logo gold */
  --gold-soft: #f7eecb;

  --ink: #1f2d30;           /* headings / strong text */
  --body: #45565a;          /* body text */
  --muted: #6c7c80;
  --line: #e4ebec;
  --line-2: #eef2f3;
  --bg: #ffffff;
  --soft: #f5f8f9;          /* alternating section bg */

  --sans: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Jiho", "Public Sans", system-ui, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(1, 75, 86, .06), 0 6px 16px -10px rgba(1, 75, 86, .25);
  --shadow: 0 10px 30px -16px rgba(1, 75, 86, .32);
  --shadow-lg: 0 24px 60px -30px rgba(1, 75, 86, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); font-size: 16.5px; line-height: 1.65;
  color: var(--body); background: var(--bg); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -.01em; font-weight: 600; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.icon { width: 24px; height: 24px; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--teal); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.eyebrow { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin: 0 0 .8rem; }
.eyebrow-light { color: var(--gold); }

/* Buttons ----------------------------------------------------------------- */
.header-actions .btn{
    white-space:nowrap;
    flex-shrink:0;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans);
  font-weight: 600; font-size: .95rem; padding: .8rem 1.4rem; border-radius: 8px;
  border: 1.5px solid transparent; cursor: pointer; 
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .icon-sm { transition: transform .2s ease; }
.btn:hover .icon-sm { transform: translateX(3px); }
.btn-sm { padding: .58rem 1rem; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-gold { background: var(--gold); color: #3a2f08; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: #fff; color: var(--teal-dark); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-link { background: transparent; color: var(--teal-dark); padding: .8rem .2rem; border: 0; }
.btn-link:hover { color: var(--teal); }

/* Image placeholders (stand in for real photography) ---------------------- */


.img-ph {
  position: relative; width: 100%; height: 100%; min-height: 220px; border-radius: var(--radius-lg);
  display: grid; place-items: center; overflow: hidden; color: rgba(255,255,255,.92);
}
.img-ph::after {
    content: "";
    position: absolute;
    inset: 0;

    opacity: .5;
}

.img-ph-a {
    background: linear-gradient(135deg, var(--teal), var(--teal-900));
}

.img-ph-b {
    background: linear-gradient(135deg, var(--teal-dark), #03323a);
}


.img-ph-glyph {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,.5);
}

img.brand-logo {
    max-width: 200px;
}


/* Utility bar + header ---------------------------------------------------- */
.utilitybar { background: var(--teal-900); color: #cfe6e9; font-size: .8rem; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.utility-note { margin: 0; color: #bfe0e3; display: inline-flex; align-items: center; gap: .45rem; }
.utility-note svg { color: var(--gold); }
.utility-links { display: flex; gap: 1.5rem; }
.utility-links a { color: #cfe6e9; }
.utility-links a:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s ease; }
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(1,75,86,.6); }
.header-inner { display: flex; align-items: center; gap: 1.15rem; padding: .65rem 0; }

.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: var(--teal); color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 1.45rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--teal-dark); letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-sub { color: #9fc4c8; }
.brand-light .brand-mark { background: var(--gold); color: var(--teal-900); }

.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: .1rem; }
.primary-nav a { display: inline-flex; align-items: center; gap: .2rem; color: var(--ink); font-weight: 500; font-size: .9rem; padding: .5rem .6rem; border-radius: 8px; white-space: nowrap; }
.primary-nav a:hover { background: var(--teal-50); color: var(--teal); }
.caret-ic { opacity: .65; }
.has-sub { position: relative; }
.subnav { position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.subnav a { display: block; padding: .6rem .8rem; border-radius: 8px; font-size: .9rem; }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink); font-weight: 700; font-size: .92rem; white-space: nowrap; }
.header-phone svg { color: var(--teal); }
.header-phone small { display: block; font-size: .64rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.header-phone span { line-height: 1.2; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; padding: 0 var(--gutter) 1.4rem; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: .85rem .25rem; border-bottom: 1px solid var(--line-2); font-weight: 500; color: var(--ink); }
.mobile-nav .btn { margin-top: 1.1rem; }
.mobile-phone { display: inline-flex; gap: .5rem; align-items: center; margin-top: 1rem; font-weight: 700; color: var(--teal); }

/* Sections ---------------------------------------------------------------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.soft { background: var(--soft); }
.section-head { max-width: 780px; margin: 0 auto clamp(2.4rem, 4vw, 3.4rem); text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.2; margin-bottom: 1.1rem; }
.section-head-left { margin-inline: 0; text-align: left; max-width: 420px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; text-align: left; max-width: none; }
.section-intro { color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 60ch; margin-inline: auto; }
.section-foot { text-align: center; margin-top: 2.5rem; }
.placeholder-note { color: var(--gold-dark); font-size: .85rem; font-weight: 600; margin: .6rem 0 0; }

/* Editorial section header + kicker --------------------------------------- */
.kicker { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-dark); margin: 0 0 1.1rem; }
.kicker-num { font-family: var(--display); font-size: .92rem; color: var(--gold-dark); letter-spacing: 0; }
.kicker-rule { width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.kicker-light { color: #f0c97a; }
.ehead { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.ehead h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.12; }
.ehead-intro { color: var(--muted); font-size: 1.1rem; margin: 1rem 0 0; max-width: 56ch; }

/* Hero — text-forward, asymmetric, light --------------------------------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.3rem); font-weight: 700; line-height: 1.06; color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -.015em; }
.hero-accent { color: var(--teal); }
.hero .lede { color: var(--body); font-size: 1.18rem; max-width: 44ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 500; color: var(--muted); }
.hero-trust svg { color: var(--teal); }
.hero-media { position: relative; }
.hero-media .img-ph { background-image:url("https://kenthealthcare.ae/kent/images/mainhero.jpeg") !important;min-height: 440px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-badge { position: absolute; left: -22px; bottom: 28px; display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem 1.3rem; max-width: 290px; }
.hero-badge-fig { font-family: var(--display); font-weight: 700; font-size: 2.5rem; color: var(--teal); line-height: 1; }
.hero-badge-fig small { font-size: .9rem; color: var(--gold-dark); margin-left: 2px; }
.hero-badge-label { font-size: .85rem; color: var(--muted); line-height: 1.35; }

/* Quick actions — refined strip ------------------------------------------ */
.quick { border-bottom: 1px solid var(--line); }
.quick-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-item { display: flex; align-items: center; gap: .9rem; padding: 1.5rem 1.6rem; border-right: 1px solid var(--line); transition: background .15s; }
.quick-item:first-child { padding-left: 0; }
.quick-item:last-child { border-right: 0; padding-right: 0; }
.quick-item:hover { background: var(--cream); }
.quick-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-50); color: var(--teal); flex: none; }
.quick-text { display: flex; flex-direction: column; line-height: 1.3; }
.quick-text strong { color: var(--ink); font-size: 1rem; }
.quick-text small { color: var(--muted); font-size: .85rem; }
.quick-arrow { color: var(--gold-dark); margin-left: auto; flex: none; opacity: 0; transform: translateX(-4px); transition: .2s; }
.quick-item:hover .quick-arrow { opacity: 1; transform: translateX(0); }

/* Stats — oversized editorial numerics on white -------------------------- */
.statrow { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.statrow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.stat { padding-top: 1rem; border-top: 2px solid var(--gold); }
.stat-figure { display: block; font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; color: var(--ink); line-height: 1; }
.stat-label { display: block; margin-top: .7rem; font-size: .9rem; color: var(--muted); }

/* Practices --------------------------------------------------------------- */
.practices { background: #fff; }
.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.practice-card { display: flex; flex-direction: column; gap: .8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; color: var(--ink); transition: transform .18s, box-shadow .18s, border-color .18s; }
.practice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.practice-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; }
.practice-card h3 { font-size: 1.2rem; }
.practice-card p { color: var(--muted); margin: 0; flex: 1; font-size: .95rem; }
.card-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--teal); font-weight: 700; font-size: .9rem; }
.card-link .icon-sm { transition: transform .2s; }
.practice-card:hover .card-link .icon-sm, .insight-card:hover .card-link .icon-sm { transform: translateX(3px); }

/* Stand-for — the single bold statement ----------------------------------- */
.stand { background: linear-gradient(120deg, var(--teal-900), var(--teal-dark)); color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.stand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.stand-copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; }
.stand-body p { color: #d9ebec; font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.8rem; }

/* Why choose — editorial numbered list, no card fills --------------------- */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 2.5rem; }
.why-card { display: flex; gap: 1.1rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.why-num { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--gold-dark); flex: none; }
.why-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.why-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Locations --------------------------------------------------------------- */
.locations.soft { background: var(--soft); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-media { position: relative; }
.loc-media .img-ph { min-height: 200px; border-radius: 0; }
.loc-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--gold); color: #3a2f08; font-size: .76rem; font-weight: 700; padding: .35rem .8rem; border-radius: 6px; letter-spacing: .03em; }
.loc-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.loc-body h3 { font-size: 1.35rem; }
.loc-address { display: flex; gap: .5rem; color: var(--muted); margin: 0; font-size: .92rem; }
.loc-address svg { color: var(--teal); flex: none; margin-top: 2px; }
.loc-phone { display: inline-flex; gap: .5rem; align-items: center; font-weight: 700; color: var(--teal); }
.loc-facts { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 .4rem; }
.loc-facts li { background: var(--teal-50); color: var(--teal-dark); font-size: .8rem; font-weight: 600; padding: .3rem .7rem; border-radius: 20px; }
.loc-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: auto; }

/* Conditions -------------------------------------------------------------- */
.conditions { background: #fff; }
.conditions-head, .faq-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.conditions-head .ehead, .faq-head .ehead { margin-bottom: 0; }
.conditions-head, .faq-head { margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.condition-group { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.condition-group > h3 { font-size: 1.05rem; margin-bottom: .9rem; }
.condition-group > h3 a { color: var(--ink); }
.condition-group ul { margin-bottom: 1rem; }
.condition-group li a { display: block; padding: .3rem 0; color: var(--body); font-size: .92rem; border-bottom: 1px solid var(--line-2); }
.condition-group li:last-child a { border-bottom: 0; }
.condition-group li a:hover { color: var(--teal); }

/* Promo (Kent at Home) — light accent ------------------------------------- */
.promo { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promo-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.promo-copy h2 { color: var(--ink); font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.14; margin-bottom: 1rem; }
.promo-copy p { color: var(--body); margin-bottom: 1.7rem; max-width: 50ch; }
.promo-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); }
.promo-card-title { display: flex; align-items: center; gap: .5rem; color: var(--teal-dark); font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.2rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.promo-card-title svg { color: var(--teal); }
.promo-services { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.2rem; }
.promo-services li { display: flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 500; font-size: .95rem; }
.promo-services .icon-sm { color: var(--teal); flex: none; }

/* ==========================================================================
   Article / interior pages
   ========================================================================== */
.article-hero { background: linear-gradient(120deg, var(--teal-900), var(--teal-dark)); color: #fff; padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(2.4rem, 5vw, 3.6rem); }
.article-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-bottom: 1rem; }
.article-lede { color: #dcecee; font-size: 1.18rem; max-width: 60ch; margin: 0; }
.breadcrumb { margin-bottom: 1.2rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; }
.breadcrumb li { color: #9fc4c8; display: flex; gap: .4rem; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: rgba(255,255,255,.35); margin-left: .4rem; }
.breadcrumb a { color: #bfe0e3; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; }

.article-body { padding: clamp(2.5rem, 5vw, 4rem) 0; background: #fff; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.article-main { min-width: 0; }
.article-main > p { color: var(--body); font-size: 1.05rem; }
.article-main > p:first-child { font-size: 1.15rem; color: var(--ink); }
.prose-section { margin-top: 2.4rem; }
.prose-section h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); color: var(--ink); margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.prose-section p { color: var(--body); }
.prose-list { display: grid; gap: .55rem; margin: 0 0 1rem; }
.prose-list li { position: relative; padding-left: 1.5rem; color: var(--body); }
.prose-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); }
.measure-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; }
.measure-chips li { background: var(--teal-50); color: var(--teal-dark); font-size: .85rem; font-weight: 600; padding: .4rem .8rem; border-radius: 20px; }
.tofill { background: var(--gold-soft); color: #7a6418; border-bottom: 1px dashed var(--gold-dark); padding: 0 .2em; border-radius: 3px; }
.article-cta { margin-top: 2.4rem; }

.faq-section .faq-list { display: grid; gap: .7rem; }
.faq-section .faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); overflow: hidden; }
.faq-section summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section .faq-answer { padding: 0 1.25rem 1.15rem; }
.faq-section .faq-answer p { color: var(--muted); margin: 0; }

/* Article sidebar */
.article-aside { display: grid; gap: 1.2rem; position: sticky; top: 96px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.aside-card h3 { font-size: 1.05rem; margin-bottom: .8rem; color: var(--ink); }
.aside-cta { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border: 0; color: #fff; }
.aside-cta h3 { color: #fff; }
.aside-cta p { color: #d7edef; font-size: .92rem; }
.aside-phone { display: inline-flex; align-items: center; gap: .5rem; margin-top: .9rem; font-weight: 700; color: #fff; }
.aside-cta .aside-phone { color: #fff; }
.aside-practice { display: inline-flex; align-items: center; gap: .4rem; color: var(--teal); font-weight: 600; }
.aside-links { display: grid; gap: .5rem; }
.aside-links a { color: var(--body); font-size: .94rem; }
.aside-links a:hover { color: var(--teal); }
.aside-contact p { color: var(--muted); font-size: .92rem; margin: 0 0 .5rem; }
.aside-note { color: var(--muted); font-size: .88rem; }

/* Practices hub */
.practice-grid-hub { grid-template-columns: repeat(1, 1fr); }
.practice-grid-hub .practice-card { padding: 2.2rem; }
.practice-grid-hub h3 { font-size: 1.4rem; }

/* Conditions hub */
.cond-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cond-hub-group { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; background: #fff; }
.cond-hub-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; padding-bottom: .9rem; border-bottom: 2px solid var(--gold); }
.cond-hub-head h2 { font-size: 1.25rem; }
.cond-hub-head a { font-size: .85rem; font-weight: 600; color: var(--teal); white-space: nowrap; display: inline-flex; align-items: center; gap: .3rem; }
.cond-hub-list { display: grid; gap: .2rem; }
.cond-hub-list a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem .7rem; border-radius: 8px; color: var(--ink); font-weight: 500; }
.cond-hub-list a:hover { background: var(--teal-50); color: var(--teal-dark); }
.cond-hub-list svg { color: var(--gold-dark); flex: none; }

/* Team page */
.team-sub { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 1.4rem; }
.team-sub-2 { margin-top: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; text-align: center; transition: box-shadow .15s, transform .15s; }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; margin-bottom: 1rem; }
.team-card h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.team-card p { color: var(--muted); font-size: .92rem; margin: 0 0 1rem; }
.team-pending { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-dark); background: var(--gold-soft); padding: .35rem .8rem; border-radius: 20px; }
.team-disciplines { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.5rem; }
.team-disciplines li { display: flex; align-items: center; gap: .6rem; color: var(--ink); font-weight: 500; }
.team-disciplines .icon-sm { color: var(--teal); flex: none; }

/* Booking page */
.book-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.book-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field span { font-size: .85rem; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { font: inherit; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--teal); }
.book-form .btn { justify-self: start; margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }
.book-aside { display: grid; gap: 1.2rem; }
.aside-contact-line { display: flex; gap: .5rem; color: var(--muted); font-size: .92rem; }
.aside-contact-line svg, .book-aside .aside-phone svg { color: var(--teal); flex: none; }
.book-aside .aside-phone { color: var(--teal); }
.map-embed { border-radius: var(--radius-lg);  display: grid; place-items: center; border: 1px solid var(--line); }
.map-embed span { background: #fff; border: 1px dashed var(--teal-100); color: var(--teal-dark); font-size: .85rem; padding: .4rem .8rem; border-radius: 6px; }
.stub-note { font-size: 1.1rem; color: var(--body); }

@media (max-width: 980px) {
  .article-grid, .book-grid { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .practice-grid-hub, .cond-hub-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid, .team-disciplines { grid-template-columns: 1fr; }
}

/* Testimonials ------------------------------------------------------------ */
.testimonials { background: var(--soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.testi-quote { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--teal-50); color: var(--teal); margin-bottom: 1rem; }
.testi-card blockquote { margin: 0 0 1.2rem; font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.testi-card figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--line-2); padding-top: 1rem; }
.testi-card figcaption strong { color: var(--ink); }
.testi-card figcaption span { color: var(--muted); font-size: .88rem; }

/* Insights ---------------------------------------------------------------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.insight-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .18s, box-shadow .18s; }
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.insight-media { position: relative; }
.insight-media .img-ph { min-height: 190px; border-radius: 0; }
.insight-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--teal-dark); font-size: .74rem; font-weight: 700; padding: .3rem .7rem; border-radius: 6px; }
.insight-body { padding: 1.4rem; }
.insight-date { font-size: .8rem; color: var(--gold-dark); font-weight: 600; }
.insight-body h3 { font-size: 1.12rem; margin: .5rem 0 1rem; color: var(--ink); }

/* FAQ --------------------------------------------------------------------- */
.faq { background: var(--soft); }
.faq-inner { display: block; }
.faq-list { display: grid; gap: .7rem; max-width: 940px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 600; color: var(--ink); font-size: 1.02rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--teal); flex: none; transition: transform .2s; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer { padding: 0 1.3rem 1.2rem; }
.faq-answer p { color: var(--muted); margin: 0; }

/* Prefooter CTA ----------------------------------------------------------- */
.prefooter { background: var(--gold-soft); }
.prefooter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(2rem, 4vw, 3rem) 0; }
.prefooter h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--teal-900); margin-bottom: .4rem; }
.prefooter p { color: #6b5e2f; margin: 0; max-width: 52ch; }
.prefooter-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.prefooter .btn-ghost-light { background: transparent; color: var(--teal-dark); border-color: var(--teal-dark); }
.prefooter .btn-ghost-light:hover { background: rgba(1,108,124,.08); }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--teal-900); color: #b6d3d7; padding-top: clamp(3rem, 5vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 2.5rem; }
.footer-tagline { color: #9fc4c8; margin: 1rem 0 1.2rem; }
.footer-contact { font-style: normal; display: grid; gap: .6rem; margin-bottom: 1rem; }
.footer-contact span, .footer-contact a { color: #b6d3d7; display: flex; gap: .5rem; align-items: flex-start; line-height: 1.5; }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-langs { font-size: .82rem; color: #7fa8ad; }
.footer-col h3 { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: #b6d3d7; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .84rem; }
.footer-bottom p { margin: 0; color: #9fc4c8; }
.footer-legal { display: flex; gap: 1.3rem; }
.footer-legal a { color: #9fc4c8; }
.footer-legal a:hover { color: #fff; }

.whatsapp-fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.4); transition: transform .15s; }
.whatsapp-fab:hover { transform: scale(1.06); }


img.brand-logo
 {
    max-width: 200px !important;
}


/* Responsive -------------------------------------------------------------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .img-ph { min-height: 300px; }
  .hero-badge { left: 1rem; bottom: 1rem; }
  .quick-row, .practice-grid { grid-template-columns: repeat(1, 1fr) !important; }
  .quick-item:nth-child(2n) { border-right: 0; }
  .statrow-grid, .why-grid, .insight-grid, .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .stand-grid, .promo-inner { grid-template-columns: 1fr; }
  .btn
 {font-size:0.65rem;
}
}
@media (max-width: 1180px) {
  .primary-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: block; }
}
@media (max-width: 860px) {
  .utility-note { display: none; }
  .utility-inner { justify-content: flex-end; }
  .conditions-head, .faq-head { flex-direction: column; align-items: flex-start; }
  .breadcrumb ol{padding-left:0px;}
}
@media (max-width: 560px) {
  .quick-row, .statrow-grid, .why-grid, .loc-grid, .insight-grid, .condition-grid { grid-template-columns: 1fr; }
  .quick-item { padding: 1.1rem 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { position: static; margin-top: 1rem; max-width: none; }
  .promo-services li { display: flex; align-items: center; gap: .25rem; color: var(--ink); font-weight: 500; font-size: .95rem; }
  .promo-card {  padding: 0.9rem; }
  .cond-hub-group { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0.8rem; background: #fff; }
  .cond-hub-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; padding-bottom: .9rem; border-bottom: 2px solid var(--gold);flex-wrap:wrap; }

}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }

.header-actions .btn{
    white-space:nowrap !important;
    flex-shrink:0;
}


.clinic-image{
    background-image: url('https://kenthealthcare.ae/kent/images/586x200.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.clinic-image .img-ph-glyph{
    display:none;
}
.header-actions .btn{
    white-space:nowrap;
    flex-shrink:0;
}
.customwidth {
    background: #01515d;
}
img.brand-logo {
    max-width: 200px;
}

@media (max-width: 992px) {

    .subnav {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: 0;
        box-shadow: none;
        padding-left: 16px;
    }

    .has-sub.open > .subnav {
        display: block;
    }
}