    /* ─── CSS Variables ─────────────────────────────────────── */
    :root {
      --teal:          #005d5d;
      --teal-dark:     #045c5c;
      --coral:         #f1684f;
      --mint:          #def0e8;
      --mint-light:    #f4ffff;
      --header-bg:     #f2ffff;
      --peach:         #f8c7b5;
      --form-overlay:  #fabeaf;
      --text-primary:  #045c5c;
      --text-body:     #005d5d;
      --placeholder:   #868e96;
      --white:         #ffffff;
    }

    /* ─── Base ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'General Sans', system-ui, sans-serif;
      color: var(--text-body);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Mobile gets side padding; wider screens let container control itself */
    .container {
      max-width: 1350px;
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (min-width: 1400px) {
      .container { padding-left: 0; padding-right: 0; }
    }

    /* ─── Buttons ───────────────────────────────────────────── */
    .btn-coral {
      background: var(--coral);
      color: #fff;
      border: none;
      border-radius: 50px;
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      padding: 14px 32px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, transform .15s;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-coral:hover { background: #d85438; color: #fff; transform: translateY(-1px); }

    .btn-teal-outline {
      background: transparent;
      color: var(--teal);
      border: 1.5px solid var(--teal);
      border-radius: 50px;
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 10px 24px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      text-decoration: none;
    }
    .btn-teal-outline:hover { background: var(--teal); color: #fff; }

    /* ─── Navbar ─────────────────────────── MOBILE FIRST ───── */
    .navbar-umniya {
      background: var(--header-bg);
      border-bottom: 1px solid rgba(0,93,93,.08);
      padding: 0;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-umniya .container {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .navbar-umniya .navbar-brand img { height: 32px; width: auto; }

    /* Hamburger — visible on mobile */
    .nav-toggle {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--teal-dark);
      font-size: 1.6rem;
      margin-left: auto;
      line-height: 1;
    }

    /* Mobile dropdown */
    .nav-collapse {
      display: none;
      position: absolute;
      top: 64px; left: 0; right: 0;
      background: var(--header-bg);
      padding: 16px 24px 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      z-index: 999;
    }
    .nav-collapse.open { display: block; }

    /* Links stacked on mobile */
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: #000;
      text-decoration: none;
      padding: 10px 18px;
      border-radius: 8px;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--coral); }

    .nav-phone {
      background: var(--coral);
      color: #fff;
      border-radius: 50px;
      padding: 12px 24px;
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: background .2s;
      display: inline-block;
      margin-top: 12px;
      margin-left: 0;
    }
    .nav-phone:hover { background: #d85438; color: #fff; }

    /* Desktop: full horizontal navbar */
    @media (min-width: 900px) {
      .navbar-umniya        { height: 77px; }
      .navbar-umniya .container { height: 77px; gap: 24px; }
      .navbar-umniya .navbar-brand img { height: 38px; }

      .nav-toggle           { display: none; }

      .nav-collapse {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        box-shadow: none;
        align-items: center;
        flex: 1;
      }

      .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
      .nav-links a { font-size: 15.8px; }

      .nav-phone {
        margin-top: 0;
        margin-left: auto;
        font-size: 16.5px;
        padding: 12px 28px;
      }
    }

    /* ─── HERO ──────────────────────────── MOBILE FIRST ───── */
    #hero {
      background: var(--teal);
      padding: 48px 0 56px;
      position: relative;
      overflow: hidden;
    }
    #hero .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('hero-bg.png');
      background-size: cover;
      background-position: center;
      opacity: .18;
    }
    #hero .container { position: relative; z-index: 2; }

    .hero-left h1 {
      font-size: clamp(2rem, 8vw, 50px);
      line-height: 1.1;
      margin-bottom: 0;
    }
    .hero-left h1 .line1 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      color: #fff;
      display: block;
    }
    .hero-left h1 .line2 {
      font-family: 'Crimson Pro', serif;
      font-weight: 400;
      font-style: italic;
      color: #fff;
      display: block;
    }
    .hero-subtitle {
      font-family: 'General Sans', sans-serif;
      font-weight: 400;
      font-size: 17px;
      color: #fff;
      margin-top: 16px;
    }

    /* Form card — stacks below headline on mobile */
    .hero-form {
      background: var(--form-overlay);
      border-radius: 20px;
      padding: 28px 22px;
      margin-top: 36px;
    }
    .hero-form h4 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 22px;
      color: var(--teal-dark);
      margin-bottom: 20px;
    }
    .hero-form .form-control {
      background: #fff;
      border: 1px solid rgba(4,92,92,.15);
      border-radius: 10px;
      padding: 14px 18px;
      font-family: 'General Sans', sans-serif;
      font-size: 16px;
      color: #333;
      margin-bottom: 14px;
    }
    .hero-form .form-control::placeholder { color: var(--placeholder); font-weight: 500; }
    .hero-form .form-control:focus {
      border-color: var(--coral);
      box-shadow: 0 0 0 3px rgba(241,104,79,.15);
      outline: none;
    }
    .hero-form .btn-coral { width: 100%; justify-content: center; font-size: 17px; }
    .hero-form .privacy-note {
      text-align: center;
      font-size: 12px;
      color: var(--teal-dark);
      font-weight: 500;
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    /* Tablet+ hero */
    @media (min-width: 768px) {
      .hero-subtitle { font-size: 20px; }
    }

    /* Desktop hero — side by side */
    @media (min-width: 992px) {
      #hero {
        min-height: 766px;
        display: flex;
        align-items: center;
        padding: 80px 0;
      }
      .hero-subtitle  { font-size: 22px; max-width: 580px; }
      .hero-form      { margin-top: 0; padding: 40px 36px; }
      .hero-form h4   { font-size: 28.3px; margin-bottom: 24px; }
      .hero-form .btn-coral { font-size: 18px; }
    }

    /* ─── SECTION: Every Journey ────────── MOBILE FIRST ───── */
    #unique {
      background: var(--mint);
      padding: 60px 0;
    }
    @media (min-width: 768px) { #unique { padding: 90px 0; } }

    .unique-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px;
      box-shadow: 0 4px 24px rgba(0,93,93,.08);
    }
    @media (min-width: 768px) { .unique-card { padding: 30px; } }

    #unique h2 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: clamp(22px, 5vw, 38px);
      color: var(--teal-dark);
      line-height: 1.15;
      margin-bottom: 14px;
    }
    #unique .subtitle {
      font-family: 'General Sans', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--teal);
      margin-bottom: 24px;
    }
    @media (min-width: 768px) {
      #unique .subtitle { font-size: 16px; margin-bottom: 28px; }
    }

    .bullet-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    @media (min-width: 768px) { .bullet-item { margin-bottom: 40px; } }
    @media (min-width: 1024px) { .bullet-item { margin-bottom: 50px; } }

    .bullet-icon {
      width: 28px; height: 28px;
      background: var(--mint);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 3px;
      color: var(--teal-dark);
      font-size: 14px;
    }
    .bullet-item p {
      font-family: 'Crimson Pro', serif;
      font-weight: 400;
      font-size: 18px;
      color: var(--teal-dark);
      line-height: 1.35;
      margin: 0;
      font-style: italic;
      padding-left: 8px;
    }
    @media (min-width: 768px) {
      .bullet-item p { font-size: 20px; padding-left: 14px; }
    }
    @media (min-width: 1024px) {
      .bullet-item p { font-size: 22px; padding-left: 20px; }
    }

    /* Doctor image — smaller on mobile */
    .hero-doc-img-2 {
      overflow: hidden;
      height: 280px;
      margin-top: 32px;
    }
    @media (min-width: 768px)  { .hero-doc-img-2 { height: 400px; } }
    @media (min-width: 992px)  { .hero-doc-img-2 { height: 550px; padding-top: 20px; margin-top: 0; } }
    .hero-doc-img-2 img {
      width: 100%; height: 100%;
      object-fit: fill;
      object-position: center top;
      display: block;
    }

    .hero-doc-img {
      border-radius: 16px;
      overflow: hidden;
      height: 300px;
      box-shadow: 0 12px 40px rgba(0,93,93,.15);
      margin-top: 32px;
    }
    @media (min-width: 992px) { .hero-doc-img { height: 580px; margin-top: 0; } }
    .hero-doc-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 16px;
      display: block;
    }

    /* ─── SECTION: The Umniya Method ────── MOBILE FIRST ───── */
    #method {
      background: #fff;
      padding: 60px 0;
    }
    @media (min-width: 768px) { #method { padding: 90px 0; } }

    .method-header {
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 20px;
    }
    .method-title-block h2 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: clamp(26px, 5vw, 43px);
      color: var(--teal-dark);
      line-height: 1;
      margin-bottom: 10px;
    }
    .method-title-block h2 sup {
      font-size: .45em;
      top: -1.2em;
      font-weight: 500;
    }
    .method-tagline {
      font-family: 'Crimson Pro', serif;
      font-weight: 500;
      font-style: italic;
      font-size: clamp(20px, 4vw, 30px);
      color: var(--teal);
      margin-bottom: 14px;
    }
    .method-desc {
      font-family: 'General Sans', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--teal);
    }
    @media (min-width: 768px) { .method-desc { font-size: 18px; } }

    /* Method cards: 1 col → 2 → 4 */
    .method-cols {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 600px) { .method-cols { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .method-cols { grid-template-columns: repeat(4, 1fr); } }

    .method-card { padding-top: 24px; }

    .method-card-top {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 18px;
      min-height: 80px;
      border-bottom: 2px solid var(--teal-dark);
      padding-bottom: 12px;
    }
    @media (min-width: 768px) { .method-card-top { height: 100px; padding-bottom: 0; min-height: unset; } }

    .method-card .method-icon {
      width: 50px;
      height: auto;
      flex-shrink: 0;
    }
    @media (min-width: 768px) { .method-card .method-icon { width: 65px; height: 69px; } }

    .method-card h3 {
      font-family: 'Crimson Pro', serif;
      font-weight: 400;
      font-size: clamp(26px, 4vw, 38px);
      color: var(--coral);
      line-height: 1.1;
      margin: 0;
      align-self: center;
      font-style: italic;
    }
    .method-card p {
      font-family: 'General Sans', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--teal);
      line-height: 1.6;
      margin: 0;
    }
    @media (min-width: 992px) { .method-card p { font-size: 17px; } }

    /* ─── SECTION: Fertility Journey ─────── MOBILE FIRST ───── */
    #journey {
      background: var(--mint);
      padding: 60px 0;
    }
    @media (min-width: 768px) { #journey { padding: 90px 0; } }

    #journey h2 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: clamp(24px, 5vw, 43px);
      color: var(--teal-dark);
      line-height: 1.15;
      margin-bottom: 12px;
      text-align: left;
    }
    #journey .subtitle {
      font-family: 'General Sans', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--teal);
      text-align: left;
    }
    @media (min-width: 768px) { #journey .subtitle { font-size: 16.7px; } }

    /* Journey grid: 1 col on mobile, 3 on tablet+ */
    .journey-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 24px;
      margin-bottom: 32px;
    }
    @media (min-width: 600px) {
      .journey-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
    }

    .journey-card {
      overflow: hidden;
      position: relative;
      height: 220px;
      cursor: pointer;
    }
    @media (min-width: 600px) { .journey-card { height: 320px; } }
    @media (min-width: 768px) { .journey-card { height: 380px; } }
    @media (min-width: 1024px) { .journey-card { height: 450px; } }

    .journey-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .journey-card:hover img { transform: scale(1.04); }
    .journey-card .j-overlay {
      position: absolute;
      inset: 0;
      background-color: #005c5d;
      opacity: 20%;
    }
    .journey-card .j-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 14px 16px;
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 17px;
      color: var(--teal);
      background: rgba(255,255,255,1);
      text-align: center;
    }
    @media (min-width: 768px) { .journey-card .j-label { padding: 24px; font-size: 22px; } }

    /* ─── SECTION: Care Team ────────────── MOBILE FIRST ───── */
    #team {
      background: var(--mint-light);
      padding: 60px 0;
    }
    @media (min-width: 768px) { #team { padding: 90px 0; } }

    #team h2 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: clamp(20px, 4vw, 30px);
      color: var(--teal-dark);
      margin-bottom: 28px;
      text-align: center;
    }
    @media (min-width: 768px) { #team h2 { margin-bottom: 48px; } }

    /* Swiper overrides — sizing handled by Swiper JS breakpoints */
    .team-swiper { overflow: hidden; }

    .team-card {
      border-radius: 12px;
      overflow: hidden;
      background: var(--teal);
      position: relative;
    }

    .team-nav {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 18px;
    }
    @media (min-width: 768px) { .team-nav { gap: 12px; margin-top: 24px; } }

    .team-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 2px solid var(--teal-dark);
      background: transparent;
      color: var(--teal-dark);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    @media (min-width: 768px) { .team-btn { width: 48px; height: 48px; } }
    .team-btn:hover { background: var(--teal-dark); color: #fff; }
    .team-btn:disabled { opacity: 0.35; cursor: default; }

    .team-card .team-photo {
      width: 100%;
      aspect-ratio: 318 / 446;
      overflow: hidden;
      display: block;
      position: relative;
    }
    .team-card .team-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }
    .team-card .team-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,40,40,.95) 0%, rgba(0,40,40,.6) 40%, transparent 70%);
      padding: 48px 20px 20px;
    }
    .team-card h5 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 19px;
      color: #fff;
      margin-bottom: 4px;
    }
    @media (min-width: 768px) { .team-card h5 { font-size: 23px; } }
    .team-card .role {
      font-family: 'General Sans', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: rgba(255,255,255,.8);
    }
    @media (min-width: 768px) { .team-card .role { font-size: 18px; } }

    /* ─── SECTION: Contact ──────────────── MOBILE FIRST ───── */
    #contact {
      background: var(--peach);
      padding: 60px 0;
    }
    @media (min-width: 768px) { #contact { padding: 90px 0; } }

    .contact-header {
      text-align: center;
      margin-bottom: 40px;
    }
    @media (min-width: 768px) { .contact-header { margin-bottom: 56px; } }

    .contact-header h2 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: clamp(24px, 5vw, 38px);
      color: var(--teal-dark);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .contact-header .subtitle {
      font-family: 'General Sans', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: var(--teal-dark);
      max-width: 540px;
      margin: 0 auto;
    }
    @media (min-width: 768px) { .contact-header .subtitle { font-size: 18px; } }

    .clinic-building {
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .clinic-building img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }
    @media (min-width: 768px) { .clinic-building img { height: 340px; margin-bottom: 28px; } }
    @media (min-width: 992px) { .clinic-building img { height: 420px; } }

    .map-embed {
      margin-top: 24px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,.12);
    }
    .contact-info { list-style: none; margin-bottom: 20px; }
    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-family: 'General Sans', sans-serif;
      font-size: 15px;
      color: var(--teal-dark);
    }
    @media (min-width: 768px) {
      .contact-info { margin-bottom: 28px; }
      .contact-info li { font-size: 18px; gap: 14px; margin-bottom: 14px; }
    }
    .contact-info li i { font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

    .phone-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--teal);
      color: #fff;
      border-radius: 50px;
      padding: 14px 28px;
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 17px;
      text-decoration: none;
    }
    @media (min-width: 768px) { .phone-pill { padding: 16px 32px; font-size: 18px; } }

    /* Contact form panel */
    .contact-form-panel {
      background: var(--teal);
      border-radius: 12px;
      padding: 28px 22px;
      margin-top: 32px;
    }
    @media (min-width: 992px) { .contact-form-panel { padding: 44px 40px; margin-top: 0; } }

    .form-field { margin-bottom: 18px; }
    @media (min-width: 768px) { .form-field { margin-bottom: 20px; } }

    .form-label-custom {
      font-family: 'General Sans', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 8px;
    }
    @media (min-width: 768px) { .form-label-custom { font-size: 17.6px; } }
    .form-label-custom .req { color: var(--coral); font-size: 18px; }

    .form-input {
      width: 100%;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      padding: 14px 16px;
      font-family: 'General Sans', sans-serif;
      font-size: 16px;
      color: #fff;
      transition: border-color .2s;
    }
    .form-input::placeholder { color: var(--placeholder); }
    .form-input:focus {
      outline: none;
      border-color: var(--coral);
      background: rgba(255,255,255,.12);
    }
    textarea.form-input { resize: vertical; min-height: 120px; }

    .contact-form-panel .btn-coral {
      width: 100%;
      justify-content: center;
      font-size: 18px;
      margin-top: 8px;
    }

    /* ─── FOOTER ────────────────────────── MOBILE FIRST ───── */
    footer {
      background: var(--teal);
      padding: 48px 0 24px;
    }
    @media (min-width: 768px) { footer { padding: 60px 0 30px; } }

    .footer-logo {
      height: 30px;
      width: auto;
      margin-bottom: 0;
      filter: brightness(0) invert(1);
    }
    @media (min-width: 768px) { .footer-logo { height: 36px; } }

    /* 1 col on small mobile → 2 col tablet → 4 col desktop */
    .footer-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.12);
      margin-bottom: 24px;
    }
    @media (min-width: 1024px) {
      .footer-cols {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        margin-bottom: 32px;
      }
    }

    /* Brand spans full width on mobile, normal on desktop */
    .footer-brand-col {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    @media (min-width: 1024px) { .footer-brand-col { grid-column: auto; gap: 20px; } }

    .footer-tagline {
      font-family: 'General Sans', sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,.55);
      max-width: 280px;
    }

    footer h6 {
      font-family: 'General Sans', sans-serif;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: 14px;
    }
    @media (min-width: 768px) { footer h6 { margin-bottom: 18px; } }

    footer ul { list-style: none; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a {
      font-family: 'General Sans', sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      transition: color .2s;
    }
    footer ul li a:hover { color: var(--coral); }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      font-family: 'General Sans', sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,.4);
    }
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }
    }
    .footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
    .footer-bottom a:hover { color: var(--coral); }
