/* Associates in Radiation Medicine — Stylesheet | armoncology.com */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal: #3cbfbf;
    --teal-dark: #2a9d9d;
    --teal-soft: rgba(60,191,191,0.10);
    --navy: #1e3045;
    --white: #ffffff;
    --off-white: #f4f7f7;
    --warm: #f9f6f2;
    --text: #2c3e50;
    --text-light: #5a6a7a;
    --border: #d0e2e2;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 52px; height: 76px;
  }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; background: none; border: none; outline: none; }
  .nav-logo img { height: 56px; width: auto; max-width: 260px; object-fit: contain; display:block; }
  .nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: var(--navy); line-height: 1.2; }
  .nav-logo-text span { display: block; font-size: 0.72rem; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-family: 'Jost', sans-serif; margin-top: 2px; }
  .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
  .nav-links a { text-decoration: none; color: var(--navy); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { background: var(--teal); color: var(--white) !important; padding: 9px 22px; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--teal-dark) !important; }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    padding: 120px 60px 80px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(60,191,191,0.07) 0%, transparent 70%);
  }
  .hero-watermark { display: none; }
  .hero-content { position: relative; z-index: 1; max-width: 620px; flex: 1; min-width: 0; }
  .hero-inner { display: flex; align-items: center; gap: 120px; position: relative; z-index: 1; width: 100%; max-width: 1200px; }
  .hero-logo-panel {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0; width: 480px; background: none; border: none; padding: 0;
  }
  .hero-logo-panel img {
    width: 480px; height: auto; display: block;
    mix-blend-mode: normal; opacity: 0.95; border-radius: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28%, black 72%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to right, transparent 0%, black 28%, black 72%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
    mask-composite: intersect;
  }
  .hero-logo-wordmark {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; color: rgba(255,255,255,0.82);
    letter-spacing: 0.04em; line-height: 1.3;
  }
  .hero-logo-wordmark span {
    display: block; font-family: 'Jost', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); margin-top: 6px; font-weight: 300;
  }
  @media(max-width:900px){ .hero-inner { flex-direction: column; } .hero-logo-panel { display: none; } }
  .hero-eyebrow {
    font-size: 1.03rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 22px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--teal); }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 300;
    color: var(--white); line-height: 1.13; margin-bottom: 26px;
  }
  .hero h1 em { font-style: italic; color: var(--teal); }
  .hero-sub { font-size: 1.03rem; line-height: 1.82; color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 44px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(60,191,191,0.35); padding: 10px 20px;
    margin-bottom: 36px; color: rgba(255,255,255,0.72);
    font-size: 1.02rem; letter-spacing: 0.05em;
  }
  .hero-badge span { color: var(--teal); }
  .btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-block; padding: 14px 34px;
    border: 1px solid var(--teal); color: var(--teal);
    text-decoration: none; font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.25s; font-family: 'Jost', sans-serif; cursor: pointer;
    background: transparent;
  }
  .btn:hover { background: var(--teal); color: var(--white); }
  .btn-solid { background: var(--teal); color: var(--white); }
  .btn-solid:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

  /* SECTIONS */
  section { padding: 100px 80px; }
  .section-label {
    font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--teal); }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 400;
    line-height: 1.2; color: var(--navy); margin-bottom: 18px;
  }
  .lead { font-size: 1.06rem; line-height: 1.85; color: var(--text-light); max-width: 720px; margin-bottom: 52px; }

  /* COMMUNITY STRIP */
  .community-strip {
    background: var(--teal); padding: 30px 80px;
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  }
  .community-strip p { color: var(--white); font-size: 1rem; line-height: 1.65; flex: 1; min-width: 260px; }
  .community-strip p strong { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; display: block; margin-bottom: 4px; }
  .cs-icons { display: flex; gap: 28px; flex-shrink: 0; }
  .cs-icon { text-align: center; color: rgba(255,255,255,0.92); }
  .cs-icon-glyph { font-size: 1.4rem; margin-bottom: 8px; font-family: Georgia, serif; font-weight: 300; line-height: 1; display: flex; align-items: center; justify-content: center; height: 24px; }
  .cs-icon-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

  /* ABOUT */
  #about { background: var(--warm); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .about-body p { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); margin-bottom: 18px; }
  .about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
  .value-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px; background: var(--white); border-left: 3px solid var(--teal);
  }
  .value-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 4px; display:flex; align-items:center; justify-content:center; }
  .value-text h4 { font-size: 1.08rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
  .value-text p { font-size: 1.04rem; color: var(--text-light); line-height: 1.6; margin: 0; }
  .about-panel { display: flex; flex-direction: column; gap: 20px; align-self: start; }

  .residency-panel {
    background: var(--navy); padding: 28px 24px; border-radius: 4px;
  }
  .residency-label {
    font-family: 'Jost', sans-serif; font-size: 0.9rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid rgba(60,191,191,0.2);
  }
  .residency-logos {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  }
  .residency-slot {
    background: #ffffff; border-radius: 4px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    min-height: 80px; transition: opacity 0.2s; cursor: default;
    padding: 2px;
  }
  .residency-slot:hover { opacity: 0.88; }
  .residency-slot img { width: 100%; height: 80px; object-fit: contain; display: block; border-radius: 2px; }
  .arm-logo-feature {
    background: var(--navy); padding: 52px 44px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; overflow: hidden;
  }
  .arm-logo-feature::after { content: none; }
  .arm-logo-feature img { width: 140px; height: auto; margin-bottom: 20px; position: relative; z-index: 1; }
  .arm-logo-feature p {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.05rem; color: rgba(255,255,255,0.65);
    line-height: 1.65; position: relative; z-index: 1; max-width: 280px;
  }
  .about-reach {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border); border: 1px solid var(--border);
  }
  .reach-stat { background: var(--white); padding: 22px 20px; text-align: center; }
  .reach-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; color: var(--navy); line-height: 1; }
  .reach-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-top: 5px; }

  /* TEAM */
  #team { background: var(--white); }
  .team-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }
  .team-intro p { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); margin-bottom: 16px; }
  .team-roles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .role-card h3 { font-weight: 600; }
  .role-card {
    border: 1px solid var(--border); padding: 32px 24px;
    text-align: center; transition: border-color 0.25s, transform 0.25s;
    position: relative; overflow: hidden;
  }
  .role-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--teal);
    transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }
  .role-card:hover { border-color: var(--teal); transform: translateY(-3px); }
  .role-card:hover::after { transform: scaleX(1); }
  .role-glyph { font-size: 2rem; margin-bottom: 14px; display: block; color: var(--teal); line-height: 1; }
  .role-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: 10px;
  }
  .role-card p { font-size: 1.04rem; line-height: 1.68; color: var(--text-light); }
  .team-community-bar {
    margin-top: 52px;
    background: var(--navy); padding: 36px 44px;
    display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center;
  }
  .tcb-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400; color: var(--white); line-height: 1.25;
  }
  .tcb-label em { color: var(--teal); font-style: italic; }
  .tcb-text { font-size: 1.08rem; line-height: 1.8; color: rgba(255,255,255,0.58); }

  /* PARTNERS */
  #partners { background: var(--off-white); }
  .partners-intro p { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); max-width: 720px; margin-bottom: 52px; }
  .partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 16px; }
  .partner-box {
    border: 1px dashed #b0c8c8; padding: 28px 24px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; min-height: 130px;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .partner-box:hover { border-color: var(--teal); box-shadow: 0 2px 16px rgba(60,191,191,0.1); }
  .partner-img-slot {
    width: 100%; max-width: 180px; height: 52px;
    background: var(--off-white); border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px; font-size: 0.78rem; letter-spacing: 0.07em;
    text-transform: uppercase; color: var(--teal); border: 1px dashed var(--border);
  }
  .partner-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--navy); line-height: 1.25; margin-bottom: 4px; }
  .partner-sub { font-size: 1.03rem; color: var(--text-light); }
  .partners-note {
    font-size: 1.08rem; color: var(--text-light); font-style: italic;
    padding: 12px 16px; background: var(--white);
    border-left: 3px solid var(--teal); margin-top: 8px;
  }

  /* THERAPIES */
  #therapies { background: var(--warm); }
  .therapies-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 52px; align-items: center; }
  .rt-photo-placeholder {
    height: 320px;
    background: linear-gradient(135deg, #1e3045 55%, #2a5f7f);
    border: 2px dashed rgba(60,191,191,0.35);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .rt-photo-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(60,191,191,0.14), transparent 70%);
  }
  .rt-note { text-align: center; padding: 28px; z-index: 1; position: relative; color: rgba(255,255,255,0.55); }
  .rt-note .rt-icon { font-size: 2.2rem; margin-bottom: 10px; }
  .rt-note strong { color: rgba(60,191,191,0.9); display: block; margin-bottom: 6px; font-size: 1.07rem; }
  .rt-note p { font-size: 1.02rem; line-height: 1.65; font-style: italic; max-width: 230px; }
  .therapies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .therapy-card {
    border: 1px solid var(--border); padding: 30px 26px;
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s; position: relative;
  }
  .therapy-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 0; background: var(--teal); transition: height 0.3s;
  }
  .therapy-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(60,191,191,0.1); }
  .therapy-card:hover::before { height: 100%; }
  .therapy-icon {
    width: 44px; height: 44px; background: transparent;
    border: 1.5px solid rgba(60,191,191,0.35);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.25rem;
    color: var(--teal); font-family: Georgia, serif; font-weight: 300; line-height: 1;
  }
  .therapy-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
  .therapy-card p { font-size: 1.06rem; line-height: 1.72; color: var(--text-light); }
  /* Technique tags inside IGRT card */
  .tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
  .tech-tag {
    font-size: 1.08rem; letter-spacing: 0.06em; text-transform: uppercase;
    border: 1px solid var(--teal); color: var(--teal);
    padding: 3px 9px; border-radius: 2px;
  }

  /* BENIGN */
  #benign { background: var(--off-white); position: relative; overflow: hidden; }
  #benign::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    background: var(--teal); opacity: 0.04;
  }
  .benign-flag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); padding: 9px 16px; margin-bottom: 18px;
    font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
  }
  .benign-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; }
  .benign-list { display: flex; flex-direction: column; gap: 14px; }
  .bc-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 20px; background: var(--white); border: 1px solid var(--border);
    transition: border-color 0.2s;
  }
  .bc-item:hover { border-color: var(--teal); }
  .bc-icon {
    width: 42px; height: 42px; flex-shrink: 0; margin-top: 2px;
    background: rgba(60,191,191,0.08); border: 1.5px solid rgba(60,191,191,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; line-height: 1;
    filter: saturate(0.4) brightness(0.85);
  }
  .bc-text h4 { font-size: 1.08rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
  .bc-text p { font-size: 1.06rem; line-height: 1.7; color: var(--text-light); margin: 0; }
  .benign-aside { background: var(--navy); padding: 44px 36px; position: sticky; top: 100px; }
  .benign-aside h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 400; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
  .benign-aside h3 em { color: var(--teal); font-style: italic; }
  .benign-aside p { font-size: 1.06rem; line-height: 1.78; color: rgba(255,255,255,0.58); margin-bottom: 18px; }
  .aside-badge { display: inline-block; border: 1px solid rgba(60,191,191,0.4); padding: 7px 14px; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }

  /* LOCATIONS */
  #locations { background: var(--navy); }
  #locations h2 { color: var(--white); }
  #locations .lead { color: rgba(255,255,255,0.56); }
  .service-area-bar {
    background: rgba(60,191,191,0.09); border: 1px solid rgba(60,191,191,0.22);
    padding: 18px 28px; margin-bottom: 44px;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  }
  .sa-label { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); white-space: nowrap; }
  .sa-text { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
  .map-wrap { margin-bottom: 44px; }
  .map-placeholder {
    height: 360px;
    background: linear-gradient(135deg, #162535, #1e3a55);
    border: 2px dashed rgba(60,191,191,0.28);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 32px; position: relative; overflow: hidden;
  }
  .map-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(60,191,191,0.07), transparent 65%);
  }
  .map-inner { z-index: 1; }
  .map-icon-big { font-size: 2.6rem; margin-bottom: 12px; opacity: 0.65; }
  .map-inner strong { color: var(--teal); display: block; font-size: 1.0rem; margin-bottom: 8px; }
  .map-inner p { color: rgba(255,255,255,0.45); font-size: 1.03rem; font-style: italic; max-width: 380px; line-height: 1.65; }
  .map-pin { position: absolute; font-size: 1.35rem; filter: drop-shadow(0 2px 6px rgba(60,191,191,0.5)); animation: floatpin 2.8s ease-in-out infinite; }
  .map-pin:nth-child(1) { top: 26%; left: 31%; animation-delay:0s; }
  .map-pin:nth-child(2) { top: 50%; left: 40%; animation-delay:0.6s; }
  .map-pin:nth-child(3) { top: 62%; left: 34%; animation-delay:1.1s; }
  .map-pin:nth-child(4) { top: 70%; left: 64%; animation-delay:1.7s; }
  @keyframes floatpin { 0%,100%{transform:translateY(0);opacity:.85;} 50%{transform:translateY(-6px);opacity:1;} }
  .locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .loc-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 26px; transition: background 0.25s, border-color 0.25s;
  }
  .loc-card:hover { background: rgba(60,191,191,0.07); border-color: rgba(60,191,191,0.28); }
  a.loc-card { text-decoration: none; display: block; cursor: pointer; }
  a.loc-card:hover { transform: translateY(-2px); transition: transform 0.2s; }
  .loc-region { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
  .loc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
  .loc-sub { font-size: 1.03rem; color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 8px; }
  .loc-card p { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.5); }
  .loc-partner-logos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
  .loc-partner-chip { border: 1px dashed rgba(60,191,191,0.35); padding: 5px 12px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(60,191,191,0.7); }
  .loc-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.33); border: 1px solid rgba(255,255,255,0.13); padding: 4px 10px; }

  /* CONTACT */
  #contact { background: var(--warm); }
  .contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
  .contact-intro p { font-size: 1.04rem; line-height: 1.85; color: var(--text-light); margin-bottom: 16px; }
  .phone-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .phone-card {
    background: var(--white); border: 1px solid var(--border);
    padding: 20px 24px; display: flex; align-items: center; gap: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .phone-card:hover { border-color: var(--teal); box-shadow: 0 2px 14px rgba(60,191,191,0.1); }
  .phone-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .phone-info strong { display: block; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; font-weight: 400; }
  .phone-info a { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); text-decoration: none; transition: color 0.2s; }
  .phone-info a:hover { color: var(--teal); }
  .phone-sub { font-size: 0.88rem; color: var(--text-light); margin-top: 2px; }
  .contact-aside { background: var(--navy); padding: 40px 36px; }
  .contact-aside h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
  .contact-aside h3 em { color: var(--teal); font-style: italic; }
  .contact-aside p { font-size: 1.06rem; line-height: 1.8; color: rgba(255,255,255,0.58); margin-bottom: 24px; }
  .promises { display: flex; flex-direction: column; gap: 11px; }
  .promise { display: flex; gap: 11px; align-items: flex-start; font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.5; }
  .promise-mark { color: var(--teal); flex-shrink: 0; }

  /* FOOTER */
  footer { background: #0f1a27; padding: 52px 80px; }
  .footer-top {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 48px;
    padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 26px;
  }
  .footer-cols { display: flex; gap: 52px; }
  .footer-brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
  .footer-brand img { height: 160px; width: auto; border-radius: 4px; mix-blend-mode: normal; opacity: 1; }
  .footer-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.68); line-height: 1.3; }
  .footer-brand-text span { display: block; font-size: 0.72rem; font-family: 'Jost', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-top: 3px; }
  .footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; font-weight: 400; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links a { text-decoration: none; color: rgba(255,255,255,0.48); font-size: 0.9rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--teal); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-copy { font-size: 0.84rem; color: rgba(255,255,255,0.25); }

  /* MOBILE */
  /* ── TABLET (max 960px) ── */
  @media (max-width: 960px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section { padding: 64px 24px; }
    .community-strip { padding: 26px 24px; }
    .hero { padding: 110px 24px 60px; }
    .about-grid, .team-intro-grid, .therapies-top, .benign-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .therapies-grid, .locations-grid, .partners-grid { grid-template-columns: 1fr 1fr; }
    .team-roles-grid { grid-template-columns: 1fr 1fr; }
    .team-community-bar { grid-template-columns: 1fr; gap: 20px; }
    footer { padding: 40px 24px; }
    .footer-top { flex-direction: column; }
    .about-reach { grid-template-columns: 1fr 1fr; }
    #testimonials { padding: 64px 24px; }
    #physicians > div[style*="grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    .partners-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .residency-logos { grid-template-columns: repeat(3, 1fr) !important; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .phone-cards { columns: 1 !important; }
  }

  /* ── MOBILE PORTRAIT (max 600px) ── */
  @media (max-width: 600px) {
    /* Nav */
    nav { padding: 0 16px; height: 64px; }
    .nav-logo img { height: 42px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-phone-btn { font-size: 0.78rem; padding: 8px 14px; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { padding: 90px 20px 52px; text-align: center; }
    .hero-inner { flex-direction: column; gap: 32px; }
    .hero-logo-panel { display: none; }
    .hero-eyebrow { font-size: 0.72rem; justify-content: center; }
    h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 0.97rem; max-width: 100%; }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
    .btn { width: 100%; max-width: 300px; text-align: center; justify-content: center; }

    /* General sections */
    section { padding: 52px 20px; }
    h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .section-label { font-size: 0.78rem; }
    .lead { font-size: 0.98rem; }

    /* About / Who We Are */
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-reach { grid-template-columns: 1fr 1fr; gap: 16px; }
    .reach-num { font-size: 1.8rem; }
    .residency-logos { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .residency-slot img { height: 54px !important; }

    /* Team */
    .team-roles-grid { grid-template-columns: 1fr; }
    .team-intro-grid { grid-template-columns: 1fr; }

    /* Physicians */
    #physicians > div[style*="grid"] {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
    }
    #physicians div[style*="padding:14px"] { padding: 10px 12px 14px !important; }
    #physicians div[style*="font-size:1.15rem"] { font-size: 0.95rem !important; }
    #physicians div[style*="font-size:0.83rem"] { font-size: 0.78rem !important; }

    /* Partners */
    .partners-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .partner-box { padding: 16px 12px !important; }
    .partner-name { font-size: 0.9rem !important; }

    /* Therapies */
    .therapies-grid { grid-template-columns: 1fr !important; }
    .therapies-top { grid-template-columns: 1fr; }
    .benign-grid { grid-template-columns: 1fr 1fr !important; }

    /* Locations */
    .locations-grid { grid-template-columns: 1fr !important; }

    /* Map */
    #locations { padding: 52px 20px; }
    #map { height: 300px !important; }

    /* Testimonials */
    #testimonials { padding: 52px 20px; }
    .testimonial-single-text { font-size: 1.05rem; }
    .testimonials-nav { margin-top: 32px; }

    /* FAQ */
    #faq { padding: 52px 20px !important; }

    /* Contact */
    #contact { padding: 52px 20px; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .phone-cards { display: flex; flex-direction: column; gap: 12px; }
    .phone-card { padding: 14px 16px; }
    .sa-grid { grid-template-columns: 1fr !important; }
    .contact-aside { padding: 28px 20px; }

    /* Footer */
    footer { padding: 36px 20px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-nav { flex-direction: column; gap: 24px; }
    .footer-logo img { height: 48px !important; }

    /* Community strip */
    .community-strip { padding: 24px 20px; flex-direction: column; }
  }

  @keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1);opacity:0.7;} 50%{transform:translate(30px,-20px) scale(1.15);opacity:1;} }
  @keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1);opacity:0.7;} 50%{transform:translate(-25px,30px) scale(1.1);opacity:1;} }
  @keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1);opacity:0.6;} 50%{transform:translate(20px,25px) scale(0.9);opacity:1;} }
  @keyframes pulse { 0%,100%{transform:scale(1) translate(-50%,-50%);opacity:0.6;} 50%{transform:scale(1.3) translate(-38%,-38%);opacity:1;} }
  @keyframes scan { 0%{transform:translateX(-200px) rotate(15deg);} 100%{transform:translateX(calc(100vw + 200px)) rotate(15deg);} }
  .hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  }
  .hero-orb-1 { width:520px;height:520px; background:radial-gradient(circle,rgba(60,191,191,0.45),transparent 70%); top:-80px;right:10%; animation:drift1 12s ease-in-out infinite; }
  .hero-orb-2 { width:380px;height:380px; background:radial-gradient(circle,rgba(60,191,191,0.38),transparent 70%); bottom:-60px;left:5%; animation:drift2 16s ease-in-out infinite; }
  .hero-orb-3 { width:260px;height:260px; background:radial-gradient(circle,rgba(255,255,255,0.08),transparent 70%); top:30%;left:40%; animation:drift3 10s ease-in-out infinite; }
  .hero-orb-4 { width:600px;height:600px; background:radial-gradient(circle,rgba(30,48,69,0),rgba(60,191,191,0.32) 50%,transparent 70%); top:50%;left:50%;transform:translate(-50%,-50%); animation:pulse 8s ease-in-out infinite; }
  .hero-scan {
    position:absolute; top:-50%; left:0; width:80px; height:300%; 
    background:linear-gradient(90deg,transparent,rgba(60,191,191,0.28),transparent);
    animation:scan 14s linear infinite; pointer-events:none; z-index:0;
  }
  @media(prefers-reduced-motion:reduce){
    .hero-orb,.hero-scan{animation:none;}
  }

  /* TESTIMONIALS */
  #testimonials {
    background: linear-gradient(160deg, var(--navy) 0%, #0a1e2e 100%);
    padding: 88px 80px; position: relative; overflow: hidden;
  }
  #testimonials::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 28rem; line-height: 1;
    color: rgba(60,191,191,0.06);
    position: absolute; top: -60px; left: 40px;
    pointer-events: none; user-select: none;
  }
  .testimonial-single {
    max-width: 820px; margin: 0 auto; text-align: center;
    position: relative; z-index: 1;
  }
  .testimonial-single-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.78; font-style: italic;
    color: rgba(255,255,255,0.90);
    margin-bottom: 36px;
  }
  .testimonial-single-author {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--teal);
  }
  .testimonial-teal-bar {
    width: 40px; height: 2px; background: var(--teal);
    margin: 0 auto 28px;
  }
  .testimonials-nav {
    display: flex; align-items: center; gap: 20px;
    margin-top: 52px; justify-content: center;
  }
  .testimonials-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(60,191,191,0.4);
    color: var(--teal); font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: all 0.2s;
  }
  .testimonials-btn:hover {
    background: rgba(60,191,191,0.15);
    border-color: var(--teal);
  }
  .testimonials-dots { display: flex; gap: 10px; }
  .testimonials-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.2); cursor: pointer;
    transition: all 0.25s;
  }
  .testimonials-dot.active {
    background: var(--teal); width: 22px; border-radius: 3px;
  }
  .testimonial-fade {
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .testimonial-fade.out {
    opacity: 0; transform: translateY(10px);
  }