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

    :root {
      --ink:       #1a1f2e;
      --slate:     #2c3a52;
      --teal:      #2e7d82;
      --teal-lt:   #3a9aa0;
      --gold:      #b5924c;
      --cream:     #f7f4ef;
      --warm-wht:  #fdfcfa;
      --mist:      #edf0f3;
      --border:    #ddd8cf;
      --text-body: #3d4452;
      --text-soft: #768097;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-wht);
      color: var(--text-body);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--ink);
      color: rgba(255,255,255,.65);
      font-size: .78rem;
      letter-spacing: .04em;
      padding: .55rem 0;
      text-align: center;
    }
    .topbar a { color: var(--gold); text-decoration: none; }
    .topbar span { margin: 0 1rem; }

    /* ─── NAV ─── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(253,252,250,.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 4vw;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: .9rem; text-decoration: none;
    }
    .nav-logo .mark {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--teal);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo .mark svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; }
    .nav-logo-text { line-height: 1.2; }
    .nav-logo-text strong {
      display: block; font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600; color: var(--ink);
      letter-spacing: .01em;
    }
    .nav-logo-text span {
      font-size: .7rem; color: var(--text-soft); letter-spacing: .08em;
      text-transform: uppercase; font-weight: 400;
    }

    .nav-links {
      display: flex; align-items: center; gap: 2.2rem; list-style: none;
    }
    .nav-links a {
      text-decoration: none; color: var(--text-body);
      font-size: .88rem; font-weight: 400; letter-spacing: .02em;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal); }

    .nav-cta {
      background: var(--teal); color: #fff !important;
      padding: .55rem 1.4rem; border-radius: 100px;
      font-weight: 500; font-size: .84rem !important;
      transition: background .2s, transform .15s !important;
    }
    .nav-cta:hover { background: var(--teal-lt) !important; transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 88vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 4vw;
      gap: 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 90% 50%, rgba(46,125,130,.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 90%, rgba(181,146,76,.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-content { animation: fadeUp .8s ease both; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(46,125,130,.1); color: var(--teal);
      font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
      padding: .35rem .9rem; border-radius: 100px;
      font-weight: 500; margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal); flex-shrink: 0;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 300; color: var(--ink);
      line-height: 1.12; letter-spacing: -.01em;
      margin-bottom: 1.4rem;
    }
    h1 em { font-style: italic; color: var(--teal); font-weight: 300; }

    .hero-desc {
      font-size: 1.05rem; color: var(--text-body); max-width: 42ch;
      margin-bottom: 2.4rem; font-weight: 300;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--teal); color: #fff;
      padding: .85rem 2rem; border-radius: 100px;
      text-decoration: none; font-weight: 500; font-size: .9rem;
      letter-spacing: .02em;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(46,125,130,.25);
    }
    .btn-primary:hover {
      background: var(--teal-lt); transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(46,125,130,.32);
    }
    .btn-outline {
      background: transparent; color: var(--ink);
      padding: .85rem 2rem; border-radius: 100px;
      text-decoration: none; font-weight: 400; font-size: .9rem;
      border: 1.5px solid var(--border);
      transition: border-color .2s, color .2s, transform .15s;
    }
    .btn-outline:hover {
      border-color: var(--teal); color: var(--teal);
      transform: translateY(-2px);
    }

    /* trust pills */
    .hero-trust {
      margin-top: 3rem;
      display: flex; gap: 2rem; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: .5rem;
      font-size: .82rem; color: var(--text-soft);
    }
    .trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

    /* hero image panel */
    .hero-visual {
      position: relative; animation: fadeIn .9s ease .2s both;
    }
    .hero-card {
      background: var(--cream);
      border-radius: 24px; overflow: hidden;
      aspect-ratio: 4/5;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 30px 80px rgba(26,31,46,.12);
      position: relative;
    }
    .hero-card-img {
      width: 100%; height: 100%;
      background:
        linear-gradient(160deg, #e8f4f5 0%, #cde8eb 40%, #b8dde0 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1rem;
    }
    .hero-card-img .medical-cross {
      width: 72px; height: 72px; position: relative;
      background: var(--teal); border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 12px 40px rgba(46,125,130,.3);
    }
    .hero-card-img .medical-cross::before,
    .hero-card-img .medical-cross::after {
      content: ''; position: absolute;
      background: rgba(255,255,255,.9); border-radius: 4px;
    }
    .hero-card-img .medical-cross::before { width: 34px; height: 10px; }
    .hero-card-img .medical-cross::after  { width: 10px; height: 34px; }

    .hero-card-img p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: var(--slate); font-style: italic;
    }

    /* floating badge */
    .hero-badge {
      position: absolute; bottom: 1.5rem; left: -1.5rem;
      background: white; border-radius: 16px;
      padding: 1rem 1.4rem;
      box-shadow: 0 12px 40px rgba(26,31,46,.14);
      display: flex; align-items: center; gap: .9rem;
      animation: float 4s ease-in-out infinite;
    }
    .badge-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: rgba(46,125,130,.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .badge-icon svg { width: 20px; height: 20px; stroke: var(--teal); stroke-width: 2; fill: none; }
    .badge-text strong { display: block; font-size: .88rem; color: var(--ink); font-weight: 500; }
    .badge-text span { font-size: .75rem; color: var(--text-soft); }

    /* ─── SECTION COMMON ─── */
    section { padding: 5rem 4vw; }
    .section-label {
      font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-bottom: .6rem;
    }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300; color: var(--ink); line-height: 1.18;
    }
    h2 em { font-style: italic; color: var(--teal); }
    .section-intro { max-width: 52ch; color: var(--text-soft); font-size: .97rem; margin-top: .8rem; }

    .section-head { margin-bottom: 3rem; }
    .section-head.centered { text-align: center; }
    .section-head.centered .section-intro { margin: .8rem auto 0; }

    /* ─── SCHEDULE SECTION ─── */
    #schedule {
      background: var(--ink);
      color: white;
      position: relative; overflow: hidden;
    }
    #schedule::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 100% 0%, rgba(46,125,130,.25) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(181,146,76,.12) 0%, transparent 50%);
      pointer-events: none;
    }

    .schedule-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      position: relative;
    }

    .schedule-content h2 { color: white; }
    .schedule-content .section-label { color: rgba(181,146,76,.9); }
    .schedule-content .section-intro { color: rgba(255,255,255,.6); }

    .schedule-options {
      display: flex; flex-direction: column; gap: 1rem;
      margin-top: 2rem;
    }
    .schedule-option {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px; padding: 1.4rem 1.6rem;
      text-decoration: none; color: white;
      display: flex; align-items: center; gap: 1.2rem;
      transition: background .2s, border-color .2s, transform .2s;
    }
    .schedule-option:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(46,125,130,.5);
      transform: translateX(4px);
    }
    .opt-icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--teal); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .opt-icon svg { width: 22px; height: 22px; stroke: white; stroke-width: 1.8; fill: none; }
    .opt-text strong { display: block; font-size: .95rem; font-weight: 500; }
    .opt-text span { font-size: .82rem; color: rgba(255,255,255,.55); }
    .opt-arrow { margin-left: auto; color: rgba(255,255,255,.3); font-size: 1.2rem; }

    /* Practice Fusion embed panel */
    .pf-panel {
      background: white; border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,.4);
    }
    .pf-header {
      background: var(--teal); padding: 1.2rem 1.6rem;
      display: flex; align-items: center; gap: .8rem;
    }
    .pf-header span {
      color: white; font-weight: 500; font-size: .9rem;
    }
    .pf-header .pf-logo {
      background: white; border-radius: 8px;
      padding: .2rem .6rem; font-size: .75rem;
      color: var(--teal); font-weight: 700; letter-spacing: .04em;
    }
    .pf-body { padding: 1.8rem; }
    .pf-body p {
      font-size: .88rem; color: var(--text-soft); margin-bottom: 1.4rem;
      line-height: 1.6;
    }
    .pf-field {
      margin-bottom: 1rem;
    }
    .pf-field label {
      display: block; font-size: .75rem; font-weight: 500;
      color: var(--ink); margin-bottom: .35rem; letter-spacing: .03em;
    }
    .pf-field select, .pf-field input {
      width: 100%; padding: .7rem 1rem;
      border: 1.5px solid var(--border); border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .88rem;
      color: var(--ink); background: var(--warm-wht);
      appearance: none; outline: none;
      transition: border-color .2s;
    }
    .pf-field select:focus, .pf-field input:focus {
      border-color: var(--teal);
    }
    .pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
    .pf-submit {
      display: block; width: 100%; margin-top: 1.2rem;
      background: var(--teal); color: white;
      border: none; padding: .9rem; border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
      cursor: pointer; transition: background .2s;
      text-align: center; text-decoration: none;
    }
    .pf-submit:hover { background: var(--teal-lt); }
    .pf-note {
      text-align: center; font-size: .75rem;
      color: var(--text-soft); margin-top: .8rem;
    }
    .pf-note a { color: var(--teal); }

    /* ─── SERVICES ─── */
    #services { background: var(--cream); }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .service-card {
      background: white; border-radius: 20px; padding: 2rem;
      border: 1px solid var(--border);
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(26,31,46,.1);
      border-color: var(--teal);
    }
    .service-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(46,125,130,.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .service-icon svg { width: 24px; height: 24px; stroke: var(--teal); stroke-width: 1.8; fill: none; }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 600; color: var(--ink);
      margin-bottom: .5rem;
    }
    .service-card p { font-size: .87rem; color: var(--text-soft); }

    /* ─── PATIENT PORTAL ─── */
    #portal {
      background: linear-gradient(135deg, #edf5f6 0%, #f7f4ef 100%);
    }
    .portal-grid {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center;
    }

    .portal-features { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }
    .portal-feature {
      display: flex; align-items: flex-start; gap: .9rem;
    }
    .feat-check {
      width: 28px; height: 28px; border-radius: 8px;
      background: var(--teal); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; margin-top: .1rem;
    }
    .feat-check svg { width: 14px; height: 14px; stroke: white; stroke-width: 2.5; fill: none; }
    .feat-text strong { display: block; font-size: .9rem; color: var(--ink); font-weight: 500; }
    .feat-text span { font-size: .83rem; color: var(--text-soft); }

    .portal-card {
      background: white; border-radius: 24px;
      padding: 2.4rem; border: 1px solid var(--border);
      box-shadow: 0 20px 60px rgba(26,31,46,.08);
    }
    .portal-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 400; color: var(--ink);
      margin-bottom: .3rem;
    }
    .portal-card > p {
      font-size: .85rem; color: var(--text-soft); margin-bottom: 1.6rem;
    }
    .portal-tabs {
      display: flex; gap: 0; margin-bottom: 1.6rem;
      background: var(--mist); border-radius: 10px; padding: .25rem;
    }
    .ptab {
      flex: 1; text-align: center; padding: .6rem;
      border-radius: 8px; font-size: .84rem; font-weight: 500;
      cursor: pointer; transition: background .2s, color .2s;
      color: var(--text-soft);
    }
    .ptab.active { background: white; color: var(--teal); box-shadow: 0 2px 8px rgba(0,0,0,.08); }

    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    .form-group { margin-bottom: .9rem; }
    .form-group label {
      display: block; font-size: .75rem; font-weight: 500;
      color: var(--ink); margin-bottom: .3rem;
    }
    .form-group input {
      width: 100%; padding: .7rem 1rem;
      border: 1.5px solid var(--border); border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .88rem;
      color: var(--ink); outline: none; transition: border-color .2s;
    }
    .form-group input:focus { border-color: var(--teal); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
    .btn-portal {
      display: block; width: 100%; margin-top: 1.2rem;
      background: var(--teal); color: white;
      border: none; padding: .9rem; border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .9rem;
      font-weight: 500; cursor: pointer; transition: background .2s;
    }
    .btn-portal:hover { background: var(--teal-lt); }
    .pf-powered {
      display: flex; align-items: center; gap: .5rem;
      justify-content: center; margin-top: 1rem;
      font-size: .72rem; color: var(--text-soft);
    }
    .pf-powered strong { color: var(--teal); }

    /* ─── DOCTOR ─── */
    #doctor {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      padding: 5rem 4vw;
    }
    .doctor-visual {
      background: var(--cream); border-radius: 24px;
      aspect-ratio: 3/4; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 1rem;
      border: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .doctor-visual::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
      background: linear-gradient(to top, rgba(46,125,130,.08), transparent);
    }
    .doctor-avatar {
      width: 160px; height: 160px; border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--teal);
      display: block;
    }
    .doctor-visual-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--ink); font-weight: 400;
    }
    .doctor-visual-cred {
      font-size: .8rem; color: var(--text-soft); letter-spacing: .06em;
    }

    .doctor-content .section-label { margin-top: 0; }
    .doctor-content blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-style: italic;
      color: var(--slate); line-height: 1.5;
      border-left: 3px solid var(--gold);
      padding-left: 1.2rem; margin: 1.5rem 0;
    }
    .doctor-content p {
      color: var(--text-soft); font-size: .93rem; margin-bottom: 1rem;
    }
    .credentials {
      display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem;
    }
    .cred-tag {
      background: var(--mist); color: var(--slate);
      font-size: .76rem; padding: .35rem .9rem; border-radius: 100px;
      font-weight: 400; letter-spacing: .02em;
    }

    /* ─── INSURANCE ─── */
    #insurance {
      background: var(--mist); text-align: center; padding: 3.5rem 4vw;
    }
    .insurance-label {
      font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-soft); margin-bottom: 1.5rem;
    }
    .insurance-logos {
      display: flex; flex-wrap: wrap; gap: 1rem;
      justify-content: center; align-items: center;
    }
    .ins-pill {
      background: white; border: 1px solid var(--border);
      padding: .6rem 1.4rem; border-radius: 100px;
      font-size: .84rem; color: var(--text-body); font-weight: 400;
    }

    /* ─── CONTACT ─── */
    #contact {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; padding: 5rem 4vw;
    }
    .contact-info h2 { margin-bottom: 1.5rem; }
    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .contact-icon {
      width: 42px; height: 42px; border-radius: 12px;
      background: rgba(46,125,130,.1);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-icon svg { width: 18px; height: 18px; stroke: var(--teal); stroke-width: 2; fill: none; }
    .contact-item strong { display: block; font-size: .88rem; color: var(--ink); margin-bottom: .2rem; }
    .contact-item span { font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
    .contact-item a { color: var(--teal); text-decoration: none; }

    .map-placeholder {
      background: var(--mist); border-radius: 20px;
      height: 100%; min-height: 380px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink); color: rgba(255,255,255,.55);
      padding: 3rem 4vw;
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
    }
    .footer-brand strong {
      display: block; font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: white; font-weight: 400; margin-bottom: .5rem;
    }
    .footer-brand p { font-size: .82rem; max-width: 34ch; line-height: 1.6; }
    footer h4 {
      font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-bottom: 1rem; font-weight: 400;
    }
    footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    footer ul a {
      color: rgba(255,255,255,.55); text-decoration: none; font-size: .84rem;
      transition: color .2s;
    }
    footer ul a:hover { color: white; }
    .footer-bottom {
      background: rgba(0,0,0,.2); padding: 1rem 4vw;
      text-align: center; font-size: .75rem; color: rgba(255,255,255,.3);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 3rem; }
      .hero-visual { display: none; }
      .schedule-grid, .portal-grid, #doctor, #contact { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      footer { grid-template-columns: 1fr; }
      .nav-links { display: none; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .pf-row, .form-row { grid-template-columns: 1fr; }
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(26,31,46,.7); backdrop-filter: blur(4px);
      align-items: center; justify-content: center;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: white; border-radius: 24px; padding: 2.4rem;
      max-width: 480px; width: 90%; position: relative;
      animation: fadeUp .3s ease;
    }
    .modal-close {
      position: absolute; top: 1.2rem; right: 1.2rem;
      background: var(--mist); border: none; border-radius: 50%;
      width: 32px; height: 32px; cursor: pointer;
      font-size: 1.1rem; color: var(--text-soft);
      display: flex; align-items: center; justify-content: center;
    }
    .modal h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
      font-weight: 400; color: var(--ink); margin-bottom: .3rem;
    }
    .modal p { font-size: .85rem; color: var(--text-soft); margin-bottom: 1.4rem; }
  
/* ── Intake form styles ── */

  .ig { margin-bottom:.15rem; }
  .ig label { display:block;font-size:.75rem;font-weight:500;color:var(--ink);margin-bottom:.3rem;letter-spacing:.02em; }
  .ig input,.ig select,.ig textarea {
    width:100%;padding:.68rem 1rem;
    border:1.5px solid var(--border);border-radius:10px;
    font-family:'DM Sans',sans-serif;font-size:.87rem;color:var(--ink);
    background:white;outline:none;transition:border-color .2s;appearance:none;
  }
  .ig input:focus,.ig select:focus,.ig textarea:focus { border-color:var(--teal); }
  .ig textarea { resize:vertical;min-height:80px; }
  .iform-grid { display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-bottom:.5rem; }
  .g2 { grid-column:1/-1; }
  .istep-heading { font-family:'Cormorant Garamond',serif;font-size:1.35rem;color:var(--ink);margin-bottom:1.2rem;font-weight:400;padding-bottom:.6rem;border-bottom:2px solid var(--mist); }
  .istep-subheading { font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-soft);font-weight:500;margin:1.6rem 0 .9rem; }
  .yn { display:inline-flex;align-items:center;gap:.35rem;font-size:.87rem;cursor:pointer;padding:.35rem .7rem;border-radius:8px;border:1px solid var(--border);background:var(--mist);transition:border-color .15s; }
  .yn:hover { border-color:var(--teal); }
  .yn input { accent-color:var(--teal); }
  .yn-row { display:inline-flex;align-items:center;gap:.5rem;font-size:.84rem;color:var(--ink); }
  .yn-row span { font-weight:500; }
  .chk-label { display:inline-flex;align-items:center;gap:.4rem;font-size:.83rem;color:var(--text-body);cursor:pointer;padding:.4rem .8rem;border-radius:8px;border:1px solid var(--border);background:var(--mist);transition:border-color .15s; }
  .chk-label:hover { border-color:var(--teal); }
  .chk-label input { accent-color:var(--teal); }
  .rm-btn { background:var(--mist);border:1px solid var(--border);border-radius:8px;padding:.35rem .65rem;cursor:pointer;color:var(--text-soft);font-size:.88rem;height:38px;align-self:end;transition:background .15s;flex-shrink:0; }
  .rm-btn:hover { background:#fee;border-color:#f99;color:#c33; }
  .add-row-btn { background:transparent;border:1.5px dashed var(--border);color:var(--teal);padding:.5rem 1.1rem;border-radius:10px;cursor:pointer;font-family:'DM Sans',sans-serif;font-size:.83rem;font-weight:500;transition:border-color .2s; }
  .add-row-btn:hover { border-color:var(--teal); }
  .step-dot { font-size:.72rem;color:var(--text-soft);letter-spacing:.02em;cursor:default;transition:color .2s; }
  .step-dot.active { color:var(--teal);font-weight:600; }
  .step-dot.done   { color:var(--gold); }
  @media(max-width:600px){ .iform-grid { grid-template-columns:1fr; } .g2 { grid-column:1; } }
