﻿/*
 * ============================================================
 *  Dr. Andrea Pakula MD, MPH, FACS — Main Stylesheet
 *  styles.css
 * ============================================================
 */


/* ============================================================
   BASE — Design Tokens, Reset, Shared Components
   (applies to every page)
   ============================================================ */
/* ===== DESIGN TOKENS ===== */
    :root {
      --navy:       #002F60;
      --cobalt:     #1155A0;
      --sky:        #4A90C4;
      --ice:        #D4E8F5;
      --fog:        #F0F6FB;
      --white:      #FFFFFF;
      --slate:      #4A5568;
      --ink:        #1A202C;
      --border:     #C7DCF0;
      --gold-hint:  #C9A84C;

      --ff-display: 'Playfair Display', Georgia, serif;
      --ff-body:    'DM Sans', system-ui, sans-serif;

      --radius:     6px;
      --max-w:      1440px;
      --transition: 0.24s ease;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--ff-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }

    /* ===== LINK UTILITIES ===== */
    /* Use these instead of relying on parent-context cascade */
    .link-cobalt {
      color: var(--cobalt);
      font-weight: 500;
      transition: color var(--transition);
    }
    .link-cobalt:hover { color: var(--navy); }

    .link-white {
      color: rgba(255,255,255,0.85);
      transition: color var(--transition);
    }
    .link-white:hover { color: var(--white); }

    .link-slate {
      color: var(--slate);
      transition: color var(--transition);
    }
    .link-slate:hover { color: var(--cobalt); }

    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ===== UTILITIES ===== */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      display: inline-block;
      font-family: var(--ff-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 14px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cobalt);
      color: var(--white);
      font-family: var(--ff-body);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 14px 32px;
      border-radius: var(--radius);
      transition: background var(--transition), transform var(--transition);
    }
    .btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid var(--cobalt);
      color: var(--cobalt);
      font-family: var(--ff-body);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 12px 30px;
      border-radius: var(--radius);
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }
    .btn-outline:hover { background: var(--cobalt); color: var(--white); transform: translateY(-1px); }

    /* ===== TOP BAR ===== */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      font-weight: 400;
      padding: 9px 0;
    }
    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .topbar-phone { color: var(--white); }
    .topbar-phone:hover { color: rgba(255,255,255,0.85); }
    .topbar-phone {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
      color: var(--white);
      font-size: 14px;
    }
    .topbar-phone svg { opacity: 0.8; }

    /* ===== HEADER / NAV ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(0,47,96,0.07);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      max-width: var(--max-w);
      margin: 0 auto;
      height: 72px;
      gap: 32px;
    }

    /* Logo */
    .site-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .logo-mark {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .logo-mark img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }
    .logo-text-block {
      line-height: 1.15;
    }
    .logo-name {
      display: block;
      font-family: var(--ff-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.01em;
    }
    .logo-cred {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--sky);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Primary nav */
    .primary-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .primary-nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--slate);
      padding: 8px 14px;
      border-radius: var(--radius);
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }
    .primary-nav a:hover { color: var(--cobalt); background: var(--fog); }
    .primary-nav a.active { color: var(--cobalt); }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-dropdown > a::after {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform var(--transition);
    }
    .nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 8px 32px rgba(0,47,96,0.12);
      min-width: 210px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
      z-index: 200;
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 10px 18px;
      font-size: 14px;
      color: var(--slate);
      border-radius: 0;
      transition: color var(--transition), background var(--transition);
    }
    .dropdown-menu a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
    .dropdown-menu a:last-child { border-radius: 0 0 var(--radius) var(--radius); }
    .dropdown-menu a:hover { color: var(--cobalt); background: var(--fog); }

    .nav-cta { margin-left: 12px; }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(155deg, var(--navy) 0%, var(--cobalt) 60%, var(--sky) 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Ccircle cx='700' cy='100' r='450' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='650' cy='650' r='300' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") no-repeat right center/cover;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.9);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 30px;
      margin-bottom: 24px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold-hint);
    }
    .hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 500;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--ice);
    }
    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.78);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 40px;
      font-weight: 300;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      font-size: 15px;
      padding: 15px 34px;
      border-radius: var(--radius);
      transition: transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
    .btn-hero-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid rgba(255,255,255,0.55);
      color: var(--white);
      font-weight: 600;
      font-size: 15px;
      padding: 13px 30px;
      border-radius: var(--radius);
      transition: border-color var(--transition), background var(--transition);
    }
    .btn-hero-outline:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .hero-stat-num {
      font-family: var(--ff-display);
      font-size: 28px;
      font-weight: 600;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      font-weight: 400;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Hero card */
    .hero-card {
      background: var(--white);
      border-radius: 12px;
      padding: 36px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    }
    .hero-card-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }
    .hero-card-logo {
      width: 54px;
      height: 54px;
    }
    .hero-card-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .hero-card-name {
      font-family: var(--ff-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
    }
    .hero-card-title {
      font-size: 12px;
      color: var(--sky);
      font-weight: 500;
      margin-top: 3px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .hero-card-items { display: flex; flex-direction: column; gap: 14px; }
    .hero-card-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .hci-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--fog);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hci-icon svg { width: 16px; height: 16px; stroke: var(--cobalt); fill: none; stroke-width: 2; }
    .hci-text { font-size: 14px; color: var(--slate); line-height: 1.5; }
    .hci-text strong { color: var(--navy); font-weight: 600; display: block; }
    .hero-card-phone {
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-card-phone a {
      font-size: 20px;
      font-weight: 700;
      color: var(--cobalt);
      font-family: var(--ff-display);
      transition: color var(--transition);
    }
    .hero-card-phone a:hover { color: var(--navy); }
    .hero-card-phone-label {
      font-size: 11px;
      color: var(--slate);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--fog);
      border-bottom: 1px solid var(--border);
      padding: 28px 0;
    }
    .trust-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--slate);
      font-size: 14px;
      font-weight: 400;
    }
    .trust-item svg { width: 20px; height: 20px; stroke: var(--cobalt); fill: none; stroke-width: 2; flex-shrink: 0; }
    .trust-item strong { color: var(--navy); font-weight: 600; }

    /* ===== SECTION SHARED ===== */
    .section { padding: 88px 0; }
    .section-alt { background: var(--fog); }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-header h2 {
      font-family: var(--ff-display);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 500;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .section-header p {
      margin-top: 16px;
      font-size: 17px;
      color: var(--slate);
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
      font-weight: 300;
    }

    /* ===== ABOUT TEASER ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-frame {
      border-radius: 10px;
      overflow: hidden;
      background: var(--ice);
      aspect-ratio: 4/5;
      max-width: 420px;
      position: relative;
    }
    .about-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(145deg, var(--ice) 0%, var(--fog) 100%);
    }
    .about-img-placeholder svg { width: 48px; height: 48px; stroke: var(--cobalt); fill: none; stroke-width: 1.5; }
    .about-img-placeholder span { font-size: 13px; color: var(--sky); }
    .about-badge {
      position: absolute;
      bottom: -20px;
      left: 300px;
      background: var(--cobalt);
      color: var(--white);
      padding: 20px 22px;
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(0,47,96,0.25);
    }
    .about-badge-num {
      font-family: var(--ff-display);
      font-size: 28px;
      font-weight: 600;
      line-height: 1;
    }
    .about-badge-text {
      font-size: 11px;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 4px;
    }
    .about-content h2 {
      font-family: var(--ff-display);
      font-size: clamp(28px, 3.5vw, 38px);
      font-weight: 500;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .about-content p {
      font-size: 16px;
      color: var(--slate);
      line-height: 1.85;
      margin-bottom: 18px;
      font-weight: 300;
    }
    .about-credentials {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .about-cred-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--slate);
    }
    .about-cred-item::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--cobalt);
      flex-shrink: 0;
    }
    .about-content .btn-outline { margin-top: 36px; }

    /* ===== SERVICES GRID ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 32px 28px;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      border-color: var(--cobalt);
      box-shadow: 0 8px 32px rgba(0,47,96,0.1);
      transform: translateY(-3px);
    }
    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: var(--fog);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: background var(--transition);
    }
    .service-card:hover .service-icon { background: var(--ice); }
    .service-icon svg { width: 24px; height: 24px; stroke: var(--cobalt); fill: none; stroke-width: 2; }
    .service-card h3 {
      font-family: var(--ff-display);
      font-size: 19px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .service-card p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.75;
      flex: 1;
      font-weight: 300;
    }
    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 600;
      color: var(--cobalt);
      margin-top: 20px;
      transition: gap var(--transition);
    }
    .service-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
    .service-card:hover .service-card-link { gap: 8px; }

    /* ===== NEWS BANNER ===== */
    .news-banner {
      background: linear-gradient(100deg, var(--navy) 0%, var(--cobalt) 100%);
      padding: 48px 0;
    }
    .news-banner .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .news-label {
      display: inline-block;
      background: var(--gold-hint);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      margin-bottom: 10px;
    }
    .news-banner h3 {
      font-family: var(--ff-display);
      font-size: 22px;
      color: var(--white);
      font-weight: 500;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .news-banner p {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      font-weight: 300;
      max-width: 520px;
    }
    .btn-news {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.14);
      border: 1.5px solid rgba(255,255,255,0.4);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      padding: 13px 28px;
      border-radius: var(--radius);
      white-space: nowrap;
      transition: background var(--transition), border-color var(--transition);
    }
    .btn-news:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }
    .btn-news svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ===== CALL TO ACTION ===== */
    .cta-section { padding: 96px 0; background: var(--white); }
    .cta-box {
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 64px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }
    .cta-box h2 {
      font-family: var(--ff-display);
      font-size: clamp(24px, 3vw, 34px);
      color: var(--navy);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .cta-box p {
      font-size: 16px;
      color: var(--slate);
      font-weight: 300;
      max-width: 480px;
    }
    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      flex-shrink: 0;
    }
    .cta-phone-link {
      font-family: var(--ff-display);
      font-size: 26px;
      font-weight: 600;
      color: var(--cobalt);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color var(--transition);
    }
    .cta-phone-link:hover { color: var(--navy); }
    .cta-phone-link svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
    .cta-hours {
      font-size: 13px;
      color: var(--slate);
      text-align: right;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.65);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand { }
    .footer-logo-name {
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .footer-logo-cred {
      font-size: 11px;
      color: var(--sky);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
      margin-bottom: 18px;
    }
    .footer-desc {
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 24px;
    }
    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), border-color var(--transition);
    }
    .social-link:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
    .social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 18px;
    }
    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      transition: color var(--transition);
    }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-contact-item {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
    .footer-contact-item svg { width: 16px; height: 16px; stroke: var(--sky); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
    .footer-contact-item a:hover { color: var(--white); }
    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      flex-wrap: wrap;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
    .footer-bottom a:hover { color: rgba(255,255,255,0.85); }

    /* ===== MOBILE NAV DRAWER ===== */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 20, 50, 0.45);
      z-index: 150;
      opacity: 0;
      transition: opacity 0.28s ease;
    }
    .mobile-nav-overlay.open { opacity: 1; }

    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(320px, 88vw);
      background: var(--white);
      z-index: 160;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -8px 0 40px rgba(0, 47, 96, 0.18);
      overflow-y: auto;
    }
    .mobile-nav-drawer.open { transform: translateX(0); }

    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
      background: var(--navy);
      flex-shrink: 0;
    }
    .mobile-nav-brand {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .mobile-nav-brand-name {
      font-family: var(--ff-display);
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
    }
    .mobile-nav-brand-cred {
      font-size: 10px;
      color: var(--sky);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
    }
    .mobile-nav-close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
    .mobile-nav-close svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }

    .mobile-nav-body {
      flex: 1;
      padding: 12px 0;
      overflow-y: auto;
    }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      border-bottom: 1px solid transparent;
      transition: background var(--transition), color var(--transition);
      cursor: pointer;
    }
    .mobile-nav-link:hover { background: var(--fog); color: var(--cobalt); }
    .mobile-nav-link.has-children svg {
      width: 16px;
      height: 16px;
      stroke: var(--slate);
      fill: none;
      stroke-width: 2;
      transition: transform var(--transition), stroke var(--transition);
      flex-shrink: 0;
    }
    .mobile-nav-link.has-children.expanded svg { transform: rotate(180deg); stroke: var(--cobalt); }
    .mobile-nav-link.has-children.expanded { color: var(--cobalt); }

    .mobile-nav-submenu {
      display: none;
      background: var(--fog);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav-submenu.open { display: block; }
    .mobile-nav-submenu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px 12px 36px;
      font-size: 14px;
      color: var(--slate);
      font-weight: 400;
      transition: background var(--transition), color var(--transition);
    }
    .mobile-nav-submenu a::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--sky);
      flex-shrink: 0;
    }
    .mobile-nav-submenu a:hover { background: var(--ice); color: var(--cobalt); }

    .mobile-nav-footer {
      padding: 20px 24px 28px;
      border-top: 1px solid var(--border);
      background: var(--fog);
      flex-shrink: 0;
    }
    .mobile-nav-call {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--cobalt);
      color: var(--white);
      padding: 16px 20px;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 17px;
      font-family: var(--ff-display);
      transition: background var(--transition);
    }
    .mobile-nav-call:hover { background: var(--navy); }
    .mobile-nav-call svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
    .mobile-nav-call-label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      opacity: 0.75;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-family: var(--ff-body);
      margin-bottom: 2px;
    }

    /* Hamburger animation */
    .hamburger { cursor: pointer; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hamburger span { transition: transform 0.25s ease, opacity 0.2s ease; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1080px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-grid { grid-template-columns: 1fr 360px; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 900px) {
      .trust-bar .container { gap: 16px; flex-wrap: wrap; justify-content: center; }
      .trust-item { font-size: 13px; }
    }

    @media (max-width: 860px) {
      /* Header */
      .primary-nav { display: none !important; }
      .nav-cta { display: none !important; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { padding: 72px 0 56px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .hero h1 { font-size: clamp(30px, 7vw, 42px); }
      .hero-sub { font-size: 15px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
      .hero-stats { gap: 24px; }

      /* About */
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-frame { max-width: 100%; aspect-ratio: 3/2; }
      .about-badge { bottom: -16px; right: 16px; }

      /* News */
      .news-banner .container { flex-direction: column; align-items: flex-start; gap: 20px; }
      .btn-news { width: 100%; justify-content: center; }

      /* CTA */
      .cta-section { padding: 64px 0; }
      .cta-box { flex-direction: column; padding: 36px 28px; gap: 32px; }
      .cta-actions { align-items: flex-start; width: 100%; }
      .cta-phone-link { font-size: 22px; }
    }

    @media (max-width: 640px) {
      /* General */
      .section { padding: 64px 0; }
      .section-header { margin-bottom: 40px; }
      .container { padding: 0 18px; }

      /* Topbar */
      .topbar-location { display: none; }
      .topbar .container { justify-content: center; }

      /* Trust bar */
      .trust-bar { padding: 20px 0; overflow-x: auto; }
      .trust-bar .container { flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
      .trust-item { font-size: 12px; white-space: nowrap; }

      /* Hero */
      .hero { padding: 56px 0 44px; }
      .hero h1 { font-size: 28px; }
      .hero-eyebrow { font-size: 10px; }
      .hero-stats { gap: 20px; padding-top: 28px; margin-top: 32px; }
      .hero-stat-num { font-size: 22px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px 20px; }

      /* About badge */
      .about-badge { padding: 14px 16px; }
      .about-badge-num { font-size: 22px; }

      /* CTA */
      .cta-box { padding: 28px 20px; }
      .cta-phone-link { font-size: 20px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .site-footer { padding: 48px 0 24px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

      /* Nav drawer width on very small */
      .mobile-nav-drawer { width: 100vw; }
    }

    @media (max-width: 400px) {
      .hero h1 { font-size: 26px; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .logo-name { font-size: 14px; }
    }


/* ============================================================
   PAGE HERO
   (about, contact, all service pages)
   ============================================================ */
/* ===== PAGE HERO (shared) ===== */
    .page-hero {
      background: linear-gradient(150deg, var(--navy) 0%, var(--cobalt) 100%);
      padding: 72px 0 64px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='400'%3E%3Ccircle cx='800' cy='200' r='340' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat right center/cover;
      pointer-events: none;
    }
    .page-hero-inner { position: relative; z-index: 2; }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 14px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 2; }
    /* Hero grid: left = breadcrumb + h1, right = sub text */
    .page-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
    }
    .page-hero-left {
      display: flex;
      flex-direction: column;
    }
    .page-hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 500;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin: 0;
    }
    .page-hero-right {
      display: flex;
      align-items: flex-end;
      padding-bottom: 4px;
    }
    .page-hero p {
      font-size: 17px;
      color: rgba(255,255,255,0.78);
      line-height: 1.8;
      font-weight: 300;
    }
    @media (max-width: 720px) {
      .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-hero-right { align-items: flex-start; }
    }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* ===== ABOUT LAYOUT ===== */
    .about-page-grid {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 72px;
      align-items: start;
    }
    .about-sidebar { position: sticky; top: 96px; }
    .about-photo-frame {
      border-radius: 10px;
      overflow: hidden;
      background: var(--ice);
      aspect-ratio: 3/4;
      margin-bottom: 28px;
    }
    .about-photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .about-photo-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
      background: linear-gradient(145deg, var(--ice), var(--fog));
    }
    .about-photo-placeholder svg { width: 56px; height: 56px; stroke: var(--cobalt); fill: none; stroke-width: 1.5; }
    .about-photo-placeholder span { font-size: 13px; color: var(--sky); }

    .sidebar-card {
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px;
      margin-bottom: 20px;
    }
    .sidebar-card h3 {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .sidebar-list { display: flex; flex-direction: column; gap: 10px; }
    .sidebar-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13px;
      color: var(--slate);
      line-height: 1.5;
    }
    .sidebar-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cobalt);
      flex-shrink: 0;
      margin-top: 6px;
    }

    .sidebar-cta {
      background: var(--cobalt);
      border-radius: 10px;
      padding: 24px;
      text-align: center;
    }
    .sidebar-cta p {
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 14px;
      line-height: 1.6;
    }
    .sidebar-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--white);
      color: var(--cobalt);
      font-weight: 700;
      font-size: 16px;
      font-family: var(--ff-display);
      padding: 14px 20px;
      border-radius: var(--radius);
      transition: background var(--transition);
    }
    .sidebar-cta a:hover { background: var(--ice); }
    .sidebar-cta a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ===== ABOUT CONTENT ===== */
    .about-main { min-width: 0; }
    .about-section { margin-bottom: 60px; }
    .about-section:last-child { margin-bottom: 0; }
    .about-section-title {
      font-family: var(--ff-display);
      font-size: 26px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 2px solid rgba(255,255,255,0.2);
      line-height: 1.25;
    }
    .about-section p {
      font-size: 16px;
      color: var(--white);
      line-height: 1.9;
      margin-bottom: 16px;
      font-weight: 400;
    }
    .about-section p:last-child { margin-bottom: 0; }

    .credentials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 8px;
    }
    .cred-item {
      background: var(--fog);
      border: 1px solid var(--border);
      border-left: 3px solid var(--cobalt);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 14px 16px;
    }
    .cred-item-label {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--sky);
      margin-bottom: 4px;
    }
    .cred-item-value {
      font-size: 14px;
      color: var(--navy);
      font-weight: 500;
      line-height: 1.4;
    }

    .memberships-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 8px;
    }
    .membership-tag {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px 14px;
      font-size: 13px;
      color: var(--slate);
      font-weight: 400;
      line-height: 1.4;
    }
    .membership-tag::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sky);
      flex-shrink: 0;
    }
    .membership-tag abbr {
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
    }

    /* ===== RESPONSIVE - ABOUT ===== */
    @media (max-width: 900px) {
      .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-sidebar { position: static; }
      .about-photo-frame { aspect-ratio: 4/3; max-width: 480px; }
      .credentials-grid { grid-template-columns: 1fr; }
      .memberships-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .page-hero { padding: 52px 0 44px; }
      .page-hero h1 { font-size: 30px; }
      .about-photo-frame { max-width: 100%; }
    }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
/* ===== CONTACT LAYOUT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 72px;
      align-items: start;
    }

    /* Primary contact card */
    .contact-primary {
      background: linear-gradient(145deg, var(--navy) 0%, var(--cobalt) 100%);
      border-radius: 14px;
      padding: 48px 44px;
      color: var(--white);
      margin-bottom: 24px;
    }
    .contact-primary-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 12px;
    }
    .contact-primary h2 {
      font-family: var(--ff-display);
      font-size: 32px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .contact-primary-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 36px;
      font-weight: 300;
    }
    .contact-phone-block {
      display: flex;
      align-items: center;
      gap: 18px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 10px;
      padding: 20px 24px;
      margin-bottom: 16px;
      transition: background var(--transition), border-color var(--transition);
      text-decoration: none;
    }
    .contact-phone-block:hover {
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.35);
    }
    .contact-phone-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-phone-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; }
    .contact-phone-label {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .contact-phone-number {
      font-family: var(--ff-display);
      font-size: 26px;
      font-weight: 600;
      color: var(--white);
      line-height: 1;
    }
    .contact-note {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
      margin-top: 4px;
    }
    .contact-hours-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 14px;
      color: rgba(255,255,255,0.7);
    }
    .contact-hours-row:first-child { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 28px; }
    .contact-hours-row svg { width: 15px; height: 15px; stroke: var(--sky); fill: none; stroke-width: 2; flex-shrink: 0; }
    .contact-hours-row strong { color: var(--white); font-weight: 600; margin-left: auto; }

    /* Info cards on the right */
    .contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
    .info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px;
    }
    .info-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .info-card-icon {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: var(--fog);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .info-card-icon svg { width: 20px; height: 20px; stroke: var(--cobalt); fill: none; stroke-width: 2; }
    .info-card-title {
      font-family: var(--ff-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
    }
    .info-card-subtitle {
      font-size: 12px;
      color: var(--sky);
      font-weight: 500;
      margin-top: 2px;
    }

    .location-detail {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 14px;
      color: var(--slate);
      line-height: 1.6;
    }
    .location-detail:last-child { margin-bottom: 0; }
    .location-detail svg { width: 16px; height: 16px; stroke: var(--cobalt); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
    .location-detail strong { color: var(--navy); display: block; font-weight: 600; font-size: 13px; }

    /* Insurance note card */
    .insurance-card {
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px;
    }
    .insurance-card h3 {
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .insurance-card p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.75;
      font-weight: 300;
    }
    .insurance-card .verify-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 14px;
      font-weight: 600;
      color: var(--cobalt);
      transition: gap var(--transition);
    }
    .insurance-card .verify-link:hover { gap: 10px; }
    .insurance-card .verify-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* Social strip at bottom of contact */
    .social-strip {
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px 28px;
    }
    .social-strip h3 {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .social-strip-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .social-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 2px solid var(--cobalt);
      border-radius: 30px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--cobalt);
      transition: border-color var(--transition), color var(--transition), background var(--transition);
    }
    .social-pill:hover { border-color: var(--navy); color: var(--white); background: var(--navy); }
    .social-pill svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

    /* ===== RESPONSIVE - CONTACT ===== */
    @media (max-width: 960px) {
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
      .page-hero { padding: 52px 0 44px; }
      .page-hero h1 { font-size: 30px; }
      .contact-primary { padding: 32px 24px; }
      .contact-primary h2 { font-size: 26px; }
      .contact-phone-number { font-size: 22px; }
    }


/* ============================================================
   SERVICE PAGES — Shared Layout & Components
   (robotic surgery, hernia repair, weight loss, cholecystectomy)
   ============================================================ */
/* ===== SERVICE PAGE LAYOUT ===== */
    .service-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 64px;
      align-items: start;
    }

    /* ===== CONTENT BODY ===== */
    .service-content { min-width: 0; }

    .content-block {
      margin-bottom: 56px;
    }
    .content-block:last-child { margin-bottom: 0; }

    .content-block h2 {
      font-family: var(--ff-display);
      font-size: 26px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid rgba(255,255,255,0.2);
      line-height: 1.25;
    }
    .content-block p {
      font-size: 16px;
      color: var(--white);
      line-height: 1.9;
      margin-bottom: 16px;
      font-weight: 400;
    }
    .content-block p:last-child { margin-bottom: 0; }

    /* ===== BENEFITS STRIP ===== */
    .benefits-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 56px;
    }
    .benefit-item {
      background: var(--white);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: var(--fog);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .benefit-icon svg { width: 22px; height: 22px; stroke: var(--cobalt); fill: none; stroke-width: 2; }
    .benefit-title {
      font-family: var(--ff-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.25;
    }
    .benefit-desc {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ===== PROCEDURES LIST ===== */
    .procedures-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .procedure-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 14px;
      color: var(--ink);
      font-weight: 400;
      line-height: 1.45;
      transition: border-color var(--transition), background var(--transition);
    }
    .procedure-item:hover {
      border-color: var(--cobalt);
      background: var(--ice);
    }
    .procedure-item::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cobalt);
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* ===== DA VINCI FEATURE PANEL ===== */
    .davinci-panel {
      background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 100%);
      border-radius: 12px;
      padding: 44px 40px;
      margin-bottom: 56px;
      position: relative;
      overflow: hidden;
    }
    .davinci-panel::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .davinci-panel::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      pointer-events: none;
    }
    .davinci-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      color: var(--ice);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .davinci-eyebrow::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold-hint);
      flex-shrink: 0;
    }
    .davinci-panel h3 {
      font-family: var(--ff-display);
      font-size: 24px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .davinci-panel p {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .davinci-panel a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: var(--radius);
      position: relative;
      z-index: 1;
      transition: background var(--transition), transform var(--transition);
    }
    .davinci-panel a:hover { background: var(--ice); transform: translateY(-1px); }
    .davinci-panel a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* ===== SIDEBAR ===== */
    .service-sidebar {
      position: sticky;
      top: 96px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .sidebar-nav-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }
    .sidebar-nav-header {
      background: var(--navy);
      padding: 16px 20px;
    }
    .sidebar-nav-header span {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.7);
    }
    .sidebar-nav-links { padding: 8px 0; }
    .sidebar-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--slate);
      border-left: 3px solid transparent;
      transition: color var(--transition), background var(--transition), border-color var(--transition);
    }
    .sidebar-nav-link:hover {
      color: var(--cobalt);
      background: var(--fog);
      border-left-color: var(--cobalt);
    }
    .sidebar-nav-link.active {
      color: var(--cobalt);
      background: var(--fog);
      border-left-color: var(--cobalt);
      font-weight: 600;
    }
    .sidebar-nav-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; opacity: 0.5; }

    .sidebar-cta-card {
      background: var(--cobalt);
      border-radius: 10px;
      padding: 28px 24px;
      text-align: center;
    }
    .sidebar-cta-card h4 {
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .sidebar-cta-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      margin-bottom: 20px;
      font-weight: 300;
    }
    .sidebar-cta-phone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--white);
      color: var(--cobalt);
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 700;
      padding: 14px 20px;
      border-radius: var(--radius);
      transition: background var(--transition);
    }
    .sidebar-cta-phone:hover { background: var(--ice); }
    .sidebar-cta-phone svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

    .sidebar-credential-card {
      background: var(--fog);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 22px;
    }
    .sidebar-credential-card h4 {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .credential-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--slate);
      line-height: 1.4;
    }
    .credential-badge:last-child { border-bottom: none; padding-bottom: 0; }
    .credential-badge svg { width: 16px; height: 16px; stroke: var(--cobalt); fill: none; stroke-width: 2; flex-shrink: 0; }


/* ============================================================
   HERNIA REPAIR — Page-Specific
   ============================================================ */
/* ===== HERNIA TYPES GRID ===== */
    .hernia-types-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 8px;
    }
    .hernia-type-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      padding: 18px 20px;
      transition: background var(--transition), border-color var(--transition);
    }
    .hernia-type-card:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.3);
    }
    .hernia-type-name {
      font-family: var(--ff-display);
      font-size: 15px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 5px;
    }
    .hernia-type-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.55;
      font-weight: 300;
    }

    /* ===== COMPLICATIONS CARDS ===== */
    .complications-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 8px;
    }
    .complication-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--cobalt);
      border-radius: var(--radius);
      padding: 22px 20px;
    }
    .complication-card.urgent { border-top-color: #C0392B; }
    .complication-title {
      font-family: var(--ff-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .complication-card.urgent .complication-title { color: #C0392B; }
    .complication-desc {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.65;
      font-weight: 300;
    }


/* ============================================================
   WEIGHT LOSS SURGERY — Page-Specific
   ============================================================ */
/* ===== ELIGIBILITY BAND ===== */
    .eligibility-band {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 28px 32px;
      margin-top: 24px;
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
    }
    .eligibility-band-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--sky);
      margin-bottom: 6px;
    }
    .eligibility-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .eligibility-num {
      font-family: var(--ff-display);
      font-size: 36px;
      font-weight: 600;
      color: var(--white);
      line-height: 1;
    }
    .eligibility-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
      max-width: 200px;
      line-height: 1.5;
    }
    .eligibility-divider {
      width: 1px;
      height: 56px;
      background: rgba(255,255,255,0.15);
      flex-shrink: 0;
    }

    /* ===== PROCEDURE CARDS ===== */
    .procedure-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 8px;
    }
    .procedure-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .procedure-card-header {
      background: var(--navy);
      padding: 20px 22px 16px;
    }
    .procedure-card-eyebrow {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--sky);
      margin-bottom: 6px;
    }
    .procedure-card-title {
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
    }
    .procedure-card-body {
      padding: 20px 22px;
      flex: 1;
    }
    .procedure-card-body p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.75;
      font-weight: 400;
    }
    .procedure-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--cobalt);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .procedure-card-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cobalt);
      flex-shrink: 0;
    }

    /* ===== CONDITIONS LIST ===== */
    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 8px;
    }
    .condition-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius);
      font-size: 14px;
      color: var(--white);
      font-weight: 400;
    }
    .condition-item svg {
      width: 16px;
      height: 16px;
      stroke: var(--sky);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }


/* ============================================================
   CHOLECYSTECTOMY — Page-Specific
   ============================================================ */
/* ===== SYMPTOM CARDS ===== */
    .symptom-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 8px;
    }
    .symptom-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: background var(--transition), border-color var(--transition);
    }
    .symptom-card:hover {
      background: rgba(255,255,255,0.13);
      border-color: rgba(255,255,255,0.28);
    }
    .symptom-card svg {
      width: 20px; height: 20px;
      stroke: var(--sky); fill: none; stroke-width: 2;
      flex-shrink: 0;
    }
    .symptom-card-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }
    .symptom-card-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.55;
      font-weight: 300;
    }

    /* ===== DIAGNOSIS STEPS ===== */
    .diagnosis-steps {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-top: 8px;
    }
    .diagnosis-step {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 20px 22px;
      border-radius: var(--radius);
    }
    .step-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cobalt);
      color: var(--white);
      font-family: var(--ff-display);
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-content { flex: 1; }
    .step-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .step-desc {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ===== WHAT TO EXPECT STRIP ===== */
    .expect-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-top: 8px;
    }
    .expect-item {
      background: var(--fog);
      padding: 22px 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .expect-icon {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }
    .expect-icon svg { width: 18px; height: 18px; stroke: var(--cobalt); fill: none; stroke-width: 2; }
    .expect-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
    }
    .expect-detail {
      font-size: 13px;
      color: var(--slate);
      line-height: 1.55;
      font-weight: 300;
    }


/* ============================================================
   RESPONSIVE — Mobile & Tablet Breakpoints
   ============================================================ */
/* ===== MOBILE NAV DRAWER ===== */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 20, 50, 0.45);
      z-index: 150;
      opacity: 0;
      transition: opacity 0.28s ease;
    }
    .mobile-nav-overlay.open { opacity: 1; }

    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(320px, 88vw);
      background: var(--white);
      z-index: 160;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -8px 0 40px rgba(0, 47, 96, 0.18);
      overflow-y: auto;
    }
    .mobile-nav-drawer.open { transform: translateX(0); }

    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
      background: var(--navy);
      flex-shrink: 0;
    }
    .mobile-nav-brand {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .mobile-nav-brand-name {
      font-family: var(--ff-display);
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
    }
    .mobile-nav-brand-cred {
      font-size: 10px;
      color: var(--sky);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
    }
    .mobile-nav-close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
    .mobile-nav-close svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }

    .mobile-nav-body {
      flex: 1;
      padding: 12px 0;
      overflow-y: auto;
    }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      border-bottom: 1px solid transparent;
      transition: background var(--transition), color var(--transition);
      cursor: pointer;
    }
    .mobile-nav-link:hover { background: var(--fog); color: var(--cobalt); }
    .mobile-nav-link.has-children svg {
      width: 16px;
      height: 16px;
      stroke: var(--slate);
      fill: none;
      stroke-width: 2;
      transition: transform var(--transition), stroke var(--transition);
      flex-shrink: 0;
    }
    .mobile-nav-link.has-children.expanded svg { transform: rotate(180deg); stroke: var(--cobalt); }
    .mobile-nav-link.has-children.expanded { color: var(--cobalt); }

    .mobile-nav-submenu {
      display: none;
      background: var(--fog);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav-submenu.open { display: block; }
    .mobile-nav-submenu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px 12px 36px;
      font-size: 14px;
      color: var(--slate);
      font-weight: 400;
      transition: background var(--transition), color var(--transition);
    }
    .mobile-nav-submenu a::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--sky);
      flex-shrink: 0;
    }
    .mobile-nav-submenu a:hover { background: var(--ice); color: var(--cobalt); }

    .mobile-nav-footer {
      padding: 20px 24px 28px;
      border-top: 1px solid var(--border);
      background: var(--fog);
      flex-shrink: 0;
    }
    .mobile-nav-call {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--cobalt);
      color: var(--white);
      padding: 16px 20px;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 17px;
      font-family: var(--ff-display);
      transition: background var(--transition);
    }
    .mobile-nav-call:hover { background: var(--navy); }
    .mobile-nav-call svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
    .mobile-nav-call-label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      opacity: 0.75;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-family: var(--ff-body);
      margin-bottom: 2px;
    }

    /* Hamburger animation */
    .hamburger { cursor: pointer; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hamburger span { transition: transform 0.25s ease, opacity 0.2s ease; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1080px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-grid { grid-template-columns: 1fr 360px; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 900px) {
      .trust-bar .container { gap: 16px; flex-wrap: wrap; justify-content: center; }
      .trust-item { font-size: 13px; }
    }

    @media (max-width: 860px) {
      /* Header */
      .primary-nav { display: none !important; }
      .nav-cta { display: none !important; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { padding: 72px 0 56px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .hero h1 { font-size: clamp(30px, 7vw, 42px); }
      .hero-sub { font-size: 15px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
      .hero-stats { gap: 24px; }

      /* About */
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-frame { max-width: 100%; aspect-ratio: 3/2; }
      .about-badge { bottom: -16px; right: 16px; }

      /* News */
      .news-banner .container { flex-direction: column; align-items: flex-start; gap: 20px; }
      .btn-news { width: 100%; justify-content: center; }

      /* CTA */
      .cta-section { padding: 64px 0; }
      .cta-box { flex-direction: column; padding: 36px 28px; gap: 32px; }
      .cta-actions { align-items: flex-start; width: 100%; }
      .cta-phone-link { font-size: 22px; }
    }

    @media (max-width: 640px) {
      /* General */
      .section { padding: 64px 0; }
      .section-header { margin-bottom: 40px; }
      .container { padding: 0 18px; }

      /* Topbar */
      .topbar-location { display: none; }
      .topbar .container { justify-content: center; }

      /* Trust bar */
      .trust-bar { padding: 20px 0; overflow-x: auto; }
      .trust-bar .container { flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
      .trust-item { font-size: 12px; white-space: nowrap; }

      /* Hero */
      .hero { padding: 56px 0 44px; }
      .hero h1 { font-size: 28px; }
      .hero-eyebrow { font-size: 10px; }
      .hero-stats { gap: 20px; padding-top: 28px; margin-top: 32px; }
      .hero-stat-num { font-size: 22px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px 20px; }

      /* About badge */
      .about-badge { padding: 14px 16px; }
      .about-badge-num { font-size: 22px; }

      /* CTA */
      .cta-box { padding: 28px 20px; }
      .cta-phone-link { font-size: 20px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .site-footer { padding: 48px 0 24px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

      /* Nav drawer width on very small */
      .mobile-nav-drawer { width: 100vw; }
    }

    @media (max-width: 400px) {
      .hero h1 { font-size: 26px; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .logo-name { font-size: 14px; }
    }

@media (max-width: 960px) {
      .service-layout { grid-template-columns: 1fr; gap: 48px; }
      .service-sidebar { position: static; }
      .benefits-strip { grid-template-columns: 1fr; gap: 2px; }
    }

@media (max-width: 640px) {
      .procedures-grid { grid-template-columns: 1fr; }
      .davinci-panel { padding: 32px 24px; }
      .benefits-strip { border-radius: var(--radius); }
    }

@media (max-width: 1080px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-grid { grid-template-columns: 1fr 360px; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

@media (max-width: 900px) {
      .trust-bar .container { gap: 16px; flex-wrap: wrap; justify-content: center; }
      .trust-item { font-size: 13px; }
    }

@media (max-width: 860px) {
      /* Header */
      .primary-nav { display: none !important; }
      .nav-cta { display: none !important; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { padding: 72px 0 56px; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .hero h1 { font-size: clamp(30px, 7vw, 42px); }
      .hero-sub { font-size: 15px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
      .hero-stats { gap: 24px; }

      /* About */
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-frame { max-width: 100%; aspect-ratio: 3/2; }
      .about-badge { bottom: -16px; right: 16px; }

      /* News */
      .news-banner .container { flex-direction: column; align-items: flex-start; gap: 20px; }
      .btn-news { width: 100%; justify-content: center; }

      /* CTA */
      .cta-section { padding: 64px 0; }
      .cta-box { flex-direction: column; padding: 36px 28px; gap: 32px; }
      .cta-actions { align-items: flex-start; width: 100%; }
      .cta-phone-link { font-size: 22px; }
    }

@media (max-width: 640px) {
      /* General */
      .section { padding: 64px 0; }
      .section-header { margin-bottom: 40px; }
      .container { padding: 0 18px; }

      /* Topbar */
      .topbar-location { display: none; }
      .topbar .container { justify-content: center; }

      /* Trust bar */
      .trust-bar { padding: 20px 0; overflow-x: auto; }
      .trust-bar .container { flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
      .trust-item { font-size: 12px; white-space: nowrap; }

      /* Hero */
      .hero { padding: 56px 0 44px; }
      .hero h1 { font-size: 28px; }
      .hero-eyebrow { font-size: 10px; }
      .hero-stats { gap: 20px; padding-top: 28px; margin-top: 32px; }
      .hero-stat-num { font-size: 22px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px 20px; }

      /* About badge */
      .about-badge { padding: 14px 16px; }
      .about-badge-num { font-size: 22px; }

      /* CTA */
      .cta-box { padding: 28px 20px; }
      .cta-phone-link { font-size: 20px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .site-footer { padding: 48px 0 24px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

      /* Nav drawer width on very small */
      .mobile-nav-drawer { width: 100vw; }
    }

@media (max-width: 400px) {
      .hero h1 { font-size: 26px; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .logo-name { font-size: 14px; }
    }

@media (max-width: 960px) {
      .service-layout { grid-template-columns: 1fr; gap: 48px; }
      .service-sidebar { position: static; }
      .complications-grid { grid-template-columns: 1fr; }
    }

@media (max-width: 640px) {
      .hernia-types-grid { grid-template-columns: 1fr; }
      .complications-grid { grid-template-columns: 1fr; }
      .davinci-panel { padding: 32px 24px; }
    }

@media (max-width: 960px) {
      .service-layout { grid-template-columns: 1fr; gap: 48px; }
      .service-sidebar { position: static; }
      .procedure-cards { grid-template-columns: 1fr; }
    }

@media (max-width: 640px) {
      .eligibility-band { flex-direction: column; gap: 20px; }
      .eligibility-divider { display: none; }
      .conditions-grid { grid-template-columns: 1fr; }
    }

@media (max-width: 960px) {
      .service-layout { grid-template-columns: 1fr; gap: 48px; }
      .service-sidebar { position: static; }
      .symptom-grid { grid-template-columns: repeat(2, 1fr); }
      .expect-strip { grid-template-columns: repeat(2, 1fr); }
    }

@media (max-width: 640px) {
      .symptom-grid { grid-template-columns: 1fr; }
      .expect-strip { grid-template-columns: 1fr; }
    }

/* ============================================================
   BLOG — Collection & Article Pages
   ============================================================ */

/* ── Collection: filter bar ── */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--cobalt);
  color: var(--cobalt);
  background: var(--ice);
}
.blog-filter-btn.active { font-weight: 600; }

/* ── Collection: featured post ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 56px;
  transition: box-shadow var(--transition);
}
/* Force block context so grid and width:100% apply on the <a> element */
a.blog-featured {
  display: grid;
}
.blog-featured:hover {
  box-shadow: 0 8px 40px rgba(0,47,96,0.1);
}
.blog-featured-image {
  background: linear-gradient(145deg, var(--navy) 0%, var(--cobalt) 100%);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.blog-featured-image::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.blog-featured-image::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.blog-featured-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-hint);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}
.blog-featured-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--sky);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.blog-featured-meta span { color: var(--slate); font-weight: 400; text-transform: none; letter-spacing: 0; }
.blog-featured-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.blog-featured-body h2 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.blog-featured-body p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cobalt);
  transition: gap var(--transition), color var(--transition);
}
.blog-read-more svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.blog-read-more:hover { gap: 11px; color: var(--navy); }

/* ── Collection: post grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.blog-card > a {
  display: block;
  flex-shrink: 0;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,47,96,0.1);
  transform: translateY(-3px);
  border-color: var(--cobalt);
}
.blog-card-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 100%);
  height: 160px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.blog-card-image::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.blog-card-cat {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}
.blog-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-meta span { color: var(--slate); font-weight: 400; }
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.blog-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card .blog-read-more { margin-top: auto; }

/* ── Collection: pagination ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.page-btn:hover { border-color: var(--cobalt); color: var(--cobalt); background: var(--ice); }
.page-btn.active { background: var(--cobalt); border-color: var(--cobalt); color: var(--white); font-weight: 600; }
.page-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── Article: layout ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

/* ── Article: header block ── */
.article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ice);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.article-cat {
  display: inline-block;
  background: var(--cobalt);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.article-date {
  font-size: 13px;
  color: var(--slate);
  font-weight: 400;
}
.article-read-time {
  font-size: 13px;
  color: var(--sky);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-read-time svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.article-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.article-header .article-deck {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.article-byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-byline-avatar svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.5; }
.article-byline-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.article-byline-cred {
  font-size: 12px;
  color: var(--sky);
  font-weight: 400;
}

/* ── Article: body content ── */
.article-body { min-width: 0; }
.article-body h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 40px 0 14px;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ice);
}
.article-body h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.article-body p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 400;
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li,
.article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
}
.article-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt);
  flex-shrink: 0;
  margin-top: 8px;
}
.article-body ol { counter-reset: article-ol; }
.article-body ol li { counter-increment: article-ol; }
.article-body ol li::before {
  content: counter(article-ol);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-body strong { font-weight: 600; color: var(--navy); }

/* ── Article: pull quote ── */
.article-pullquote {
  border-left: 4px solid var(--cobalt);
  background: var(--fog);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-pullquote p {
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ── Article: info box ── */
.article-infobox {
  background: var(--ice);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin: 32px 0;
}
.article-infobox-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  margin-bottom: 8px;
}
.article-infobox p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* ── Article: CTA panel ── */
.article-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 100%);
  border-radius: 10px;
  padding: 32px 30px;
  margin: 48px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.article-cta h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}
.article-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.article-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--cobalt);
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.article-cta-phone:hover { background: var(--ice); }
.article-cta-phone svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Article: sidebar ── */
.article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-toc {
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}
.article-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 14px;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: toc;
}
.article-toc ol li { counter-increment: toc; }
.article-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--slate);
  font-weight: 400;
  line-height: 1.45;
  transition: background var(--transition), color var(--transition);
}
.article-toc ol li a::before {
  content: counter(toc);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.article-toc ol li a:hover { background: var(--ice); color: var(--cobalt); }

/* ── Article: related posts ── */
.related-posts {
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.related-posts-header {
  background: var(--navy);
  padding: 14px 20px;
}
.related-posts-header span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}
.related-post-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  text-decoration: none;
}
.related-post-item:last-child { border-bottom: none; }
.related-post-item:hover { background: var(--ice); }
.related-post-cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
}
.related-post-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.related-post-date {
  font-size: 11px;
  color: var(--slate);
  font-weight: 400;
}

/* ── Responsive — Blog ── */
@media (max-width: 1000px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-image { min-height: 220px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; align-items: flex-start; }
  .article-cta-phone { width: 100%; justify-content: center; }
  .article-header h1 { font-size: 26px; }
}
