
    :root {
      --red: #e11d2e;
      --red-dark: #c41424;
      --dark: #1a1a1a;
      --gray-900: #111827;
      --gray-700: #374151;
      --gray-600: #4b5563;
      --gray-500: #6b7280;
      --gray-200: #e5e7eb;
      --gray-100: #f3f4f6;
      --gray-50: #f9fafb;
      --white: #ffffff;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-700);
      line-height: 1.65;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 14px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .logo span { color: var(--red); }
    .logo .creds {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-left: 4px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
      transition: color 0.2s;
    }

    .nav a:hover, .nav a.active { color: var(--red); }
    .nav a.active {
      border-bottom: 2px solid var(--red);
      padding-bottom: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary { background: var(--red); color: var(--white); }
    .btn-primary:hover { background: var(--red-dark); }

    .btn-outline {
      background: transparent;
      color: var(--red);
      border: 1.5px solid var(--red);
    }
    .btn-outline:hover { background: var(--red); color: var(--white); }

    .btn-white { background: var(--white); color: var(--red); }
    .btn-white:hover { background: var(--gray-100); }

    /* ========== ROTATING HERO ========== */
    .hero {
      position: relative;
      height: 560px;
      overflow: hidden;
      background: var(--gray-900);
    }

    .hero-slides {
      position: absolute;
      inset: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(17, 24, 39, 0.55);
      z-index: 1;
    }

    .hero-slide--1 {
      background-image: url('../../images/console-arms-crossed.jpg');
      background-position: center 30%;
    }
    .hero-slide--2 {
      background-image: url('../../images/console-side.jpg');
      background-position: center 40%;
    }
    .hero-slide--3 {
      background-image: url('../../images/or-action.jpg');
      background-position: center 25%;
    }

    .hero-slide-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 40px 24px;
      color: var(--white);
    }

    .hero-slide h1 {
      font-size: 3.1rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .hero-slide .hero-sub {
      font-size: 1.15rem;
      opacity: 0.92;
      margin-bottom: 32px;
      line-height: 1.55;
    }

    .hero-dots {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: none;
      cursor: pointer;
      transition: background 0.3s;
      padding: 0;
    }

    .hero-dot.active {
      background: var(--white);
    }

    /* METRICS */
    .metrics {
      background: var(--red);
      color: var(--white);
      padding: 28px 0;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .metric-value {
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .metric-label {
      font-size: 0.85rem;
      opacity: 0.85;
      margin-top: 4px;
    }

    /* ABOUT */
    .about-teaser { padding: 80px 0; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .about-photos img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      object-position: center top;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .about-content h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .about-content p {
      margin-bottom: 16px;
      font-size: 1rem;
    }

    .about-content .btn { margin-top: 8px; }

    /* WHY */
    .why {
      background: var(--gray-50);
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .section-title p {
      color: var(--gray-500);
      max-width: 560px;
      margin: 0 auto;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow);
      transition: transform 0.2s;
    }

    .why-card:hover { transform: translateY(-4px); }

    .why-icon {
      width: 52px;
      height: 52px;
      background: #fef2f2;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .why-card h3 {
      font-size: 1.1rem;
      font-weight: 650;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .why-card p {
      font-size: 0.95rem;
      color: var(--gray-600);
    }

    /* TREATMENTS */
    .treatments { padding: 80px 0; }

    .treatments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .treatment-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: all 0.2s;
    }

    .treatment-card:hover {
      border-color: var(--red);
      box-shadow: var(--shadow);
    }

    .treatment-card h3 {
      font-size: 1.05rem;
      font-weight: 650;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .treatment-card p {
      font-size: 0.9rem;
      color: var(--gray-500);
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .treatment-card a {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--red);
    }

    .treatment-card a:hover { text-decoration: underline; }

    /* IMAGE BAND */
    .image-band {
      position: relative;
      height: 360px;
      overflow: hidden;
    }

    .image-band img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .image-band-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0.45) 55%, transparent 100%);
      display: flex;
      align-items: center;
    }

    .image-band-content {
      color: var(--white);
      max-width: 480px;
    }

    .image-band-content h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .image-band-content p {
      opacity: 0.9;
      margin-bottom: 20px;
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--gray-900);
      color: var(--white);
      padding: 80px 0;
    }

    .testimonials .section-title h2 { color: var(--white); }
    .testimonials .section-title p { color: rgba(255,255,255,0.6); }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .stars {
      color: #fbbf24;
      font-size: 0.95rem;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .testimonial-card blockquote {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 18px;
      opacity: 0.92;
    }

    .testimonial-card .author {
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* MEDIA */
    .media { padding: 80px 0; }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .section-header h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
    }

    .section-header a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--red);
    }

    .section-header a:hover { text-decoration: underline; }

    .media-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .media-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 24px;
      transition: box-shadow 0.2s;
    }

    .media-card:hover { box-shadow: var(--shadow); }

    .media-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .media-card p {
      font-size: 0.9rem;
      color: var(--gray-500);
      margin-bottom: 16px;
    }

    .media-card .read-more {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--red);
    }

    /* CTA */
    .cta {
      background: var(--red);
      color: var(--white);
      padding: 72px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .cta p {
      opacity: 0.9;
      margin-bottom: 28px;
      font-size: 1.05rem;
    }

    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* FOOTER */
    .footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 28px;
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer ul { list-style: none; }
    .footer li { margin-bottom: 8px; }
    .footer a:hover { color: var(--white); }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand span { color: var(--red); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      opacity: 0.6;
    }

    @media (max-width: 960px) {
      .hero { height: 460px; }
      .hero-slide h1 { font-size: 2.3rem; }
      .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .about-grid { grid-template-columns: 1fr; }
      .about-photos { max-width: 480px; margin: 0 auto 28px; }
      .why-grid { grid-template-columns: 1fr; }
      .treatments-grid { grid-template-columns: 1fr 1fr; }
      .testimonial-grid { grid-template-columns: 1fr; }
      .media-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .hero { height: 420px; }
      .hero-slide h1 { font-size: 1.85rem; }
      .nav { display: none; }
      .metrics-grid { grid-template-columns: 1fr 1fr; }
      .treatments-grid { grid-template-columns: 1fr; }
      .about-photos img { height: 220px; }
    }
  

/* ===== MEDIA PAGE ===== */

    :root {
      --red: #e11d2e;
      --red-dark: #c41424;
      --dark: #1a1a1a;
      --gray-900: #111827;
      --gray-700: #374151;
      --gray-600: #4b5563;
      --gray-500: #6b7280;
      --gray-200: #e5e7eb;
      --gray-100: #f3f4f6;
      --gray-50: #f9fafb;
      --white: #ffffff;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-700);
      line-height: 1.65;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* HEADER */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 14px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .logo span { color: var(--red); }
    .logo .creds {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-left: 4px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
      transition: color 0.2s;
    }

    .nav a:hover, .nav a.active { color: var(--red); }
    .nav a.active {
      border-bottom: 2px solid var(--red);
      padding-bottom: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary { background: var(--red); color: var(--white); }
    .btn-primary:hover { background: var(--red-dark); }

    /* HERO */
    .page-hero {
      background: var(--gray-900);
      color: var(--white);
      padding: 72px 0 64px;
      text-align: center;
    }

    .page-hero .breadcrumb {
      font-size: 0.85rem;
      opacity: 0.7;
      margin-bottom: 16px;
    }

    .page-hero .breadcrumb a:hover { text-decoration: underline; }

    .page-hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .page-hero p {
      font-size: 1.05rem;
      opacity: 0.85;
      max-width: 640px;
      margin: 0 auto;
    }

    /* SECTIONS */
    .section {
      padding: 64px 0;
    }

    .section--alt {
      background: var(--gray-50);
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .section h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 28px;
    }

    /* VISUAL CARDS */
    .cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .cards--3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px);
    }

    .card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      object-position: center;
      background: var(--gray-100);
    }

    /* Placeholder visual when no photo */
    .card-visual {
      width: 100%;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      color: var(--white);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
    }

    .card-visual .icon {
      font-size: 2rem;
      opacity: 0.9;
    }

    .card-visual--media {
      background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    }
    .card-visual--pub {
      background: linear-gradient(135deg, #7c2d12 0%, #431407 100%);
    }
    .card-visual--talk {
      background: linear-gradient(135deg, #14532d 0%, #052e16 100%);
    }
    .card-visual--news {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }
    .card-visual--milestone {
      background: linear-gradient(135deg, #991b1b 0%, #450a0a 100%);
    }

    .card-body {
      padding: 22px 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-meta {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gray-500);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .card h3 {
      font-size: 1.05rem;
      font-weight: 650;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .card p {
      font-size: 0.9rem;
      color: var(--gray-500);
      margin-bottom: 16px;
      line-height: 1.5;
      flex: 1;
    }

    .card .link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--red);
    }

    .card .link:hover { text-decoration: underline; }

    /* Featured large card */
    .card--featured {
      grid-column: 1 / -1;
      flex-direction: row;
      min-height: 220px;
    }

    .card--featured .card-img,
    .card--featured .card-visual {
      width: 42%;
      height: auto;
      min-height: 220px;
      flex-shrink: 0;
    }

    .card--featured .card-body {
      justify-content: center;
    }

    /* CTA */
    .cta {
      background: var(--red);
      color: var(--white);
      padding: 64px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .cta p {
      opacity: 0.9;
      margin-bottom: 24px;
    }

    .cta .btn {
      background: var(--white);
      color: var(--red);
    }

    .cta .btn:hover { background: var(--gray-100); }

    /* FOOTER */
    .footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 28px;
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer ul { list-style: none; }
    .footer li { margin-bottom: 8px; }
    .footer a:hover { color: var(--white); }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand span { color: var(--red); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      opacity: 0.6;
    }

    @media (max-width: 960px) {
      .page-hero h1 { font-size: 2rem; }
      .cards, .cards--3 { grid-template-columns: 1fr; }
      .card--featured { flex-direction: column; }
      .card--featured .card-img,
      .card--featured .card-visual {
        width: 100%;
        min-height: 180px;
        height: 180px;
      }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .nav { display: none; }
      .page-hero { padding: 48px 0 40px; }
      .page-hero h1 { font-size: 1.75rem; }
    }
  

/* ===== TREATMENT ===== */

    :root {
      --red: #e11d2e;
      --red-dark: #c41424;
      --dark: #1a1a1a;
      --gray-900: #111827;
      --gray-700: #374151;
      --gray-600: #4b5563;
      --gray-500: #6b7280;
      --gray-200: #e5e7eb;
      --gray-100: #f3f4f6;
      --gray-50: #f9fafb;
      --white: #ffffff;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-700);
      line-height: 1.65;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 14px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .logo span { color: var(--red); }
    .logo .creds {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-left: 4px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
      transition: color 0.2s;
    }

    .nav a:hover, .nav a.active { color: var(--red); }
    .nav a.active {
      border-bottom: 2px solid var(--red);
      padding-bottom: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary { background: var(--red); color: var(--white); }
    .btn-primary:hover { background: var(--red-dark); }

    .btn-white { background: var(--white); color: var(--red); }
    .btn-white:hover { background: var(--gray-100); }

    /* HERO — wider landscape photo, zoomed out */
    .page-hero {
      position: relative;
      background: var(--gray-900);
      color: var(--white);
      padding: 80px 0 72px;
      text-align: center;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: url('../../images/console-arms-crossed.jpg') center 12%/cover no-repeat;
      opacity: 0.5;
    }

    .page-hero .container { position: relative; z-index: 2; }

    .page-hero .breadcrumb {
      font-size: 0.85rem;
      opacity: 0.7;
      margin-bottom: 16px;
    }

    .page-hero .breadcrumb a:hover { text-decoration: underline; }

    .page-hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .page-hero p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    .intro {
      padding: 48px 0 24px;
      text-align: center;
    }

    .intro p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.05rem;
      color: var(--gray-600);
    }

    /* DIFFERENTIATORS */
    .diff {
      padding: 24px 0 56px;
    }

    .diff-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }

    .diff-card {
      background: var(--gray-50);
      border-radius: var(--radius);
      padding: 24px 22px;
      border-left: 4px solid var(--red);
    }

    .diff-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .diff-card p {
      font-size: 0.9rem;
      color: var(--gray-600);
      margin: 0;
    }

    .diff-card .badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--red);
      background: #fef2f2;
      padding: 4px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
    }

    /* HIGHLIGHT SNS */
    .sns-highlight {
      background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
      color: var(--white);
      border-radius: var(--radius);
      padding: 36px 32px;
      margin-bottom: 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
    }

    .sns-highlight h2 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .sns-highlight p {
      opacity: 0.9;
      font-size: 0.95rem;
      margin-bottom: 0;
      max-width: 560px;
    }

    .sns-highlight .btn {
      white-space: nowrap;
    }

    /* TREATMENTS */
    .treatments {
      padding: 0 0 80px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .section-title p {
      color: var(--gray-500);
      max-width: 560px;
      margin: 0 auto;
    }

    .tx-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .tx-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px 26px;
      transition: box-shadow 0.2s, border-color 0.2s;
    }

    .tx-card:hover {
      box-shadow: var(--shadow);
      border-color: #fca5a5;
    }

    .tx-icon {
      width: 48px;
      height: 48px;
      background: #fef2f2;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 14px;
    }

    .tx-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .tx-card p {
      font-size: 0.92rem;
      color: var(--gray-600);
      margin-bottom: 0;
      line-height: 1.6;
    }

    .tx-card a {
      display: inline-block;
      margin-top: 12px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--red);
    }

    .tx-card a:hover { text-decoration: underline; }

    /* IMAGE BAND */
    .image-band {
      position: relative;
      height: 340px;
      overflow: hidden;
    }

    .image-band img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }

    .image-band-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(17,24,39,0.88) 0%, rgba(17,24,39,0.5) 55%, transparent 100%);
      display: flex;
      align-items: center;
    }

    .image-band-content {
      color: var(--white);
      max-width: 500px;
    }

    .image-band-content h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .image-band-content p {
      opacity: 0.9;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    /* CTA */
    .cta {
      background: var(--red);
      color: var(--white);
      padding: 72px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .cta p {
      opacity: 0.9;
      margin-bottom: 28px;
      font-size: 1.05rem;
    }

    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* FOOTER */
    .footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 28px;
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer ul { list-style: none; }
    .footer li { margin-bottom: 8px; }
    .footer a:hover { color: var(--white); }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand span { color: var(--red); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      opacity: 0.6;
    }

    @media (max-width: 960px) {
      .page-hero h1 { font-size: 2rem; }
      .diff-grid { grid-template-columns: 1fr; }
      .sns-highlight {
        grid-template-columns: 1fr;
        text-align: left;
      }
      .tx-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .nav { display: none; }
      .page-hero { padding: 56px 0 48px; }
      .page-hero h1 { font-size: 1.75rem; }
    }
  

/* ===== ABOUT ===== */

    :root {
      --red: #e11d2e;
      --red-dark: #c41424;
      --dark: #1a1a1a;
      --gray-900: #111827;
      --gray-700: #374151;
      --gray-600: #4b5563;
      --gray-500: #6b7280;
      --gray-200: #e5e7eb;
      --gray-100: #f3f4f6;
      --gray-50: #f9fafb;
      --white: #ffffff;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-700);
      line-height: 1.65;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== HEADER ========== */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 14px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .logo span {
      color: var(--red);
    }

    .logo .creds {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-left: 4px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
      transition: color 0.2s;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--red);
    }

    .nav a.active {
      border-bottom: 2px solid var(--red);
      padding-bottom: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 22px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--red-dark);
    }

    .btn-outline {
      background: transparent;
      color: var(--red);
      border: 1.5px solid var(--red);
    }

    .btn-outline:hover {
      background: var(--red);
      color: var(--white);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      height: 340px;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../../images/or-profile.jpg') center/cover no-repeat;
      opacity: 0.25;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: var(--white);
    }

    .hero h1 {
      font-size: 2.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 400;
      opacity: 0.9;
      max-width: 700px;
    }

    .breadcrumb {
      font-size: 0.85rem;
      opacity: 0.7;
      margin-bottom: 16px;
    }

    .breadcrumb a {
      opacity: 0.9;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    /* ========== METRICS ========== */
    .metrics {
      margin-top: -48px;
      position: relative;
      z-index: 10;
      margin-bottom: 64px;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      padding: 28px 20px;
    }

    .metric {
      text-align: center;
      padding: 8px 4px;
    }

    .metric-icon {
      width: 42px;
      height: 42px;
      margin: 0 auto 10px;
      background: #fef2f2;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .metric-value {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
    }

    .metric-label {
      font-size: 0.8rem;
      color: var(--gray-500);
      margin-top: 4px;
      line-height: 1.3;
    }

    /* ========== BIO SECTION ========== */
    .bio-section {
      padding: 0 0 72px;
    }

    .bio-grid {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 48px;
      align-items: start;
    }

    .bio-photo {
      position: sticky;
      top: 100px;
    }

    .bio-photo img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      width: 100%;
      object-fit: cover;
    }

    .bio-photo .caption {
      font-size: 0.8rem;
      color: var(--gray-500);
      text-align: center;
      margin-top: 10px;
    }

    .bio-content h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .bio-content p {
      margin-bottom: 18px;
      font-size: 1rem;
    }

    .bio-content h3 {
      font-size: 1.15rem;
      font-weight: 650;
      color: var(--dark);
      margin: 32px 0 12px;
      padding-bottom: 6px;
      border-bottom: 2px solid var(--gray-100);
    }

    .bio-content ul {
      margin: 12px 0 20px 20px;
    }

    .bio-content li {
      margin-bottom: 8px;
    }

    .highlight {
      background: #fef2f2;
      border-left: 4px solid var(--red);
      padding: 16px 20px;
      border-radius: 0 8px 8px 0;
      margin: 24px 0;
      font-size: 0.95rem;
    }

    /* ========== IMAGE GALLERY ========== */
    .gallery {
      padding: 0 0 72px;
    }

    .gallery h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 24px;
      text-align: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .gallery-grid img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      object-position: center;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    /* ========== PERSONAL ========== */
    .personal {
      background: var(--gray-50);
      padding: 64px 0;
    }

    .personal-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .personal img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      width: 100%;
      height: 340px;
      object-fit: cover;
    }

    .personal h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .personal p {
      margin-bottom: 14px;
    }

    /* ========== MEDIA ========== */
    .media {
      padding: 72px 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .section-header h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
    }

    .section-header a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--red);
    }

    .section-header a:hover {
      text-decoration: underline;
    }

    .media-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .media-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 24px;
      transition: box-shadow 0.2s;
    }

    .media-card:hover {
      box-shadow: var(--shadow);
    }

    .media-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .media-card p {
      font-size: 0.9rem;
      color: var(--gray-500);
      margin-bottom: 16px;
    }

    .media-card .read-more {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--red);
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials {
      background: var(--gray-900);
      color: var(--white);
      padding: 72px 0;
    }

    .testimonials h2 {
      font-size: 1.6rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .stars {
      color: #fbbf24;
      font-size: 0.95rem;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .testimonial-card blockquote {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 18px;
      opacity: 0.92;
    }

    .testimonial-card .author {
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* ========== CTA ========== */
    .cta {
      padding: 72px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .cta p {
      color: var(--gray-500);
      margin-bottom: 28px;
      font-size: 1.05rem;
    }

    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 28px;
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer ul {
      list-style: none;
    }

    .footer li {
      margin-bottom: 8px;
    }

    .footer a:hover {
      color: var(--white);
    }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand span {
      color: var(--red);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      opacity: 0.6;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 960px) {
      .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .bio-grid {
        grid-template-columns: 1fr;
      }
      .bio-photo {
        position: static;
        max-width: 320px;
        margin: 0 auto;
      }
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }
      .personal-inner {
        grid-template-columns: 1fr;
      }
      .testimonial-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .hero h1 {
        font-size: 1.9rem;
      }
      .metrics-grid {
        grid-template-columns: 1fr 1fr;
      }
      .nav {
        display: none;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      .media-grid {
        grid-template-columns: 1fr;
      }
    }
  

/* ===== VIDEOS ===== */

    :root {
      --red: #e11d2e;
      --red-dark: #c41424;
      --dark: #1a1a1a;
      --gray-900: #111827;
      --gray-700: #374151;
      --gray-600: #4b5563;
      --gray-500: #6b7280;
      --gray-200: #e5e7eb;
      --gray-100: #f3f4f6;
      --gray-50: #f9fafb;
      --white: #ffffff;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-700);
      line-height: 1.65;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 14px 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      white-space: nowrap;
    }

    .logo span { color: var(--red); }
    .logo .creds {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-left: 4px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
      transition: color 0.2s;
    }

    .nav a:hover, .nav a.active { color: var(--red); }
    .nav a.active {
      border-bottom: 2px solid var(--red);
      padding-bottom: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary { background: var(--red); color: var(--white); }
    .btn-primary:hover { background: var(--red-dark); }

    .btn-outline {
      background: transparent;
      color: var(--red);
      border: 1.5px solid var(--red);
    }
    .btn-outline:hover { background: var(--red); color: var(--white); }

    /* HERO */
    .page-hero {
      position: relative;
      background: var(--gray-900);
      color: var(--white);
      padding: 72px 0 64px;
      text-align: center;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: url('../../images/or-action.jpg') center 25%/cover no-repeat;
      opacity: 0.4;
    }

    .page-hero .container { position: relative; z-index: 2; }

    .page-hero .breadcrumb {
      font-size: 0.85rem;
      opacity: 0.7;
      margin-bottom: 16px;
    }

    .page-hero .breadcrumb a:hover { text-decoration: underline; }

    .page-hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .page-hero p {
      font-size: 1.05rem;
      opacity: 0.9;
      max-width: 560px;
      margin: 0 auto 20px;
    }

    /* FILTERS */
    .filters {
      padding: 28px 0 8px;
      border-bottom: 1px solid var(--gray-200);
      background: var(--gray-50);
      position: sticky;
      top: 58px;
      z-index: 50;
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: center;
    }

    .filter-btn {
      padding: 8px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: 100px;
      border: 1.5px solid var(--gray-200);
      background: var(--white);
      color: var(--gray-600);
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      border-color: var(--red);
      color: var(--red);
      background: #fef2f2;
    }

    /* VIDEO GRID */
    .videos {
      padding: 48px 0 80px;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .video-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }

    .video-card:hover {
      box-shadow: var(--shadow);
    }

    .video-embed {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      background: #000;
    }

    .video-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-body {
      padding: 18px 20px 22px;
    }

    .video-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--red);
      background: #fef2f2;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 8px;
    }

    .video-body h3 {
      font-size: 1.05rem;
      font-weight: 650;
      color: var(--dark);
      line-height: 1.35;
      margin-bottom: 6px;
    }

    .video-body p {
      font-size: 0.85rem;
      color: var(--gray-500);
      margin: 0;
    }

    /* CHANNEL CTA */
    .channel-cta {
      text-align: center;
      padding: 0 0 64px;
    }

    .channel-cta p {
      color: var(--gray-500);
      margin-bottom: 16px;
    }

    /* CTA */
    .cta {
      background: var(--red);
      color: var(--white);
      padding: 64px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .cta p {
      opacity: 0.9;
      margin-bottom: 24px;
    }

    .cta .btn {
      background: var(--white);
      color: var(--red);
    }

    /* FOOTER */
    .footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 28px;
      font-size: 0.9rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer ul { list-style: none; }
    .footer li { margin-bottom: 8px; }
    .footer a:hover { color: var(--white); }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand span { color: var(--red); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      opacity: 0.6;
    }

    @media (max-width: 960px) {
      .page-hero h1 { font-size: 2rem; }
      .video-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .nav { display: none; }
      .page-hero { padding: 48px 0 40px; }
      .page-hero h1 { font-size: 1.75rem; }
      .filters { top: 56px; }
    }
  
/* ===== CONTACT PAGE ===== */
.page-hero {
  background: var(--gray-900);
  color: var(--white);
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.page-hero .breadcrumb {
  font-size: 0.9rem;
  opacity: 0.75;
}
.page-hero .breadcrumb a { color: var(--white); opacity: 0.9; }
.page-hero .breadcrumb a:hover { opacity: 1; text-decoration: underline; }

.contact-section {
  padding: 64px 0 72px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact-intro {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.12);
}
.form-control::placeholder { color: var(--gray-500); }
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.form-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 1.1em;
}
.form-success {
  color: #059669;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #ecfdf5;
  border-radius: 8px;
  display: none;
}
.form-success.show { display: block; }
.form-global-error {
  color: #dc2626;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fef2f2;
  border-radius: 8px;
  display: none;
}
.form-global-error.show { display: block; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-sidebar {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
}
.contact-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(225, 29, 46, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-info-item p {
  margin: 0;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.45;
}
.contact-info-item a {
  color: var(--dark);
}
.contact-info-item a:hover { color: var(--red); }

.map-wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
  .map-wrap iframe { height: 320px; }
}

/* ===== CONTACT PAGE (draft layout) ===== */
.contact-section {
  padding: 64px 0 80px;
  background: var(--gray-50);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-intro {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.contact-intro a {
  color: var(--red);
  font-weight: 600;
}
.contact-intro a:hover { text-decoration: underline; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group label .optional {
  font-weight: 400;
  color: var(--gray-500);
  font-size: 0.8rem;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.12);
}
.form-control::placeholder { color: #9ca3af; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  cursor: pointer;
  margin-bottom: 0;
}
.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}
.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 8px 0 20px;
  line-height: 1.5;
}
.form-note a {
  color: var(--red);
  font-weight: 600;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.form-success {
  color: #059669;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #ecfdf5;
  border-radius: 8px;
  display: none;
}
.form-success.show { display: block; }
.form-global-error {
  color: #dc2626;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fef2f2;
  border-radius: 8px;
  display: none;
}
.form-global-error.show { display: block; }
.form-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 1em;
}

.office-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.office-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.office-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.office-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.office-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.office-item p,
.office-item a {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}
.office-item a.phone-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
}
.office-item a.phone-link:hover { text-decoration: underline; }
.office-item a:hover { color: var(--red); }

.office-map {
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 200px;
  background: var(--gray-100);
}
.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}
.map-link:hover { text-decoration: underline; }
.office-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 24px 0;
}
.secondary-location {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.secondary-location strong {
  color: var(--dark);
  font-weight: 600;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .office-card { position: static; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 20px; }
  .radio-group { flex-direction: column; gap: 12px; }
}

/* ===== BLOGS PAGE ===== */
.blogs-section {
  padding: 64px 0 80px;
  background: var(--white);
}
.blogs-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--gray-500);
  font-size: 1.05rem;
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-3px);
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  margin-top: auto;
}
.blog-card .read-more:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blogs-grid { grid-template-columns: 1fr; }
}

/* ===== BLOGS HUB (enhanced) ===== */
.blogs-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.blogs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(225,29,46,0.18), transparent 55%);
  pointer-events: none;
}
.blogs-hero .container { position: relative; z-index: 1; }
.blogs-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 14px;
}
.blogs-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 640px;
}
.blogs-hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.blogs-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.blogs-hero-stats div strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.blogs-hero-stats div span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.blogs-section { padding: 56px 0 80px; background: var(--gray-50); }

.blogs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}
.blogs-filter {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.blogs-filter:hover { border-color: var(--red); color: var(--red); }
.blogs-filter.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.blogs-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.blogs-featured:hover { transform: translateY(-3px); }
.blogs-featured-visual {
  background: linear-gradient(145deg, #111827, #1f2937);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
}
.blogs-featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
}
.blogs-featured-visual-label {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.blogs-featured-visual-label span {
  display: inline-block;
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.blogs-featured-visual-label strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.3;
}
.blogs-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blogs-featured-body .tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 10px;
}
.blogs-featured-body h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blogs-featured-body p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blogs-featured-body .cta-link {
  font-weight: 600;
  color: var(--red);
  font-size: 0.95rem;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.blog-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--red), #f87171);
}
.blog-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card:hover .read-more { gap: 10px; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: var(--gray-900);
  color: var(--white);
  padding: 56px 0 48px;
}
.article-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.article-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.article-hero .breadcrumb a:hover { color: var(--white); }
.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 12px;
}
.article-hero h1 {
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 14px;
}
.article-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding: 56px 0 72px;
  align-items: start;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-700);
}
.article-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 14px;
  letter-spacing: -0.02em;
}
.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol {
  margin: 0 0 20px 1.25rem;
}
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--dark); }
.article-callout {
  background: #fef2f2;
  border-left: 4px solid var(--red);
  padding: 18px 20px;
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  font-size: 0.98rem;
}
.article-callout strong { color: var(--red); }

.article-sidebar {
  position: sticky;
  top: 88px;
}
.article-sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.article-sidebar-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.article-sidebar-card a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}
.article-sidebar-card a:last-child { border-bottom: none; }
.article-sidebar-card a:hover { color: var(--red); }
.article-sidebar-cta {
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.article-sidebar-cta p {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 14px;
  line-height: 1.5;
}
.article-sidebar-cta .btn {
  background: var(--white);
  color: var(--red);
  width: 100%;
}
.article-sidebar-cta .btn:hover { background: var(--gray-100); }

@media (max-width: 900px) {
  .blogs-featured { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .blogs-hero h1 { font-size: 2.1rem; }
}
@media (max-width: 600px) {
  .blogs-grid { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 1.75rem; }
}

/* =========================================================
   MOBILE RESPONSIVE — hamburger + layout (final overrides)
   ========================================================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 120;
}
.nav-toggle:hover { background: var(--gray-100, #f3f4f6); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark, #1a1a1a);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-contact-mobile { display: none !important; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 90;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
body.nav-open .nav-backdrop {
  display: block;
}

/* Desktop stays as-is; mobile panel from 960px down */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .header-contact-btn { display: none !important; }

  .header-inner {
    gap: 12px;
  }

  .logo {
    font-size: 1rem;
    max-width: calc(100% - 60px);
  }
  .logo .creds {
    display: none;
  }

  /* Override older rules that hide .nav */
  .nav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    padding: 80px 24px 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    z-index: 110;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav a {
    display: block;
    padding: 14px 4px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
  }
  .nav a:hover,
  .nav a.active {
    color: #e11d2e;
  }
  .nav a.active {
    border-bottom-color: #fecaca;
  }

  .nav-contact-mobile {
    display: block !important;
    margin-top: 20px;
    text-align: center;
    background: #e11d2e !important;
    color: #fff !important;
    border-radius: 8px;
    border-bottom: none !important;
    padding: 14px 16px !important;
    font-weight: 600 !important;
  }
  .nav-contact-mobile:hover {
    background: #c41424 !important;
    color: #fff !important;
  }

  /* Home / general layouts */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .hero {
    height: auto !important;
    min-height: 420px;
  }
  .hero-slide h1 {
    font-size: 1.85rem !important;
  }
  .hero-slide .hero-sub {
    font-size: 1rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .office-card {
    position: static !important;
  }

  .about-teaser,
  .why .why-grid,
  .treatments-grid,
  .media-grid {
    grid-template-columns: 1fr !important;
  }

  /* Article / blog */
  .pe-article {
    padding: 28px 20px 36px !important;
  }
  .pe-hero h1 {
    font-size: 1.65rem !important;
  }
  .pe-blogs-grid {
    grid-template-columns: 1fr !important;
  }
  .pe-wrap {
    margin-top: -20px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .metric-value {
    font-size: 1.35rem !important;
  }
  .hero {
    min-height: 380px !important;
  }
  .hero-slide h1 {
    font-size: 1.6rem !important;
  }
  .page-hero h1 {
    font-size: 1.6rem !important;
  }
  .form-card {
    padding: 24px 18px !important;
  }
  .blogs-featured {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 400px) {
  .logo span:first-child {
    font-size: 0.95rem;
  }
}
