*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0b1f3a;
      --teal: #1e7f74;
      --teal-light: #2ba396;
      --teal-pale: #e6f4f3;
      --cream: #f7f5f2;
      --white: #ffffff;
      --gray: #6b7280;
      --gray-light: #f1f1ef;
      --border: #dde3e0;
      --shadow: 0 4px 24px rgba(11,31,58,0.08);
      --shadow-hover: 0 12px 40px rgba(11,31,58,0.14);
      --radius: 4px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--navy);
      background: var(--white);
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Roboto', serif;
      font-weight: 500;
      line-height: 1.2;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: var(--shadow); }

    .nav-brand {
      font-family: 'Sophisticated/Elegant', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: .01em;
    }
    .nav-brand span { color: var(--teal); }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: .88rem;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--navy);
      opacity: .75;
      transition: opacity .2s, color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--teal);
      transition: width .3s;
    }
    .nav-links a:hover { opacity: 1; color: var(--teal); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--teal);
      color: var(--white) !important;
      padding: .5rem 1.3rem;
      border-radius: 40px;
      opacity: 1 !important;
      transition: background .2s, box-shadow .2s !important;
    }
    .nav-cta:hover { background: var(--navy) !important; box-shadow: 0 4px 16px rgba(30,127,116,.3); }
    .nav-cta::after { display: none !important; }

    .hero-subtitle {
      font-size: 1rem;
      font-family: 'Sophisticated/Elegant', serif;
      color: black(255,255,255,.7);
      letter-spacing: .01em;
      text-transform: uppercase;
      margin-top: -.5rem;
      margin-bottom: 0.5;
      font-weight: 300;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      transition: all .3s;
      border-radius: 2px;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(11,31,58,.82) 0%, rgba(11,31,58,.55) 55%, rgba(30,127,116,.18) 100%),
        url('carl\ clinic\ page.jpeg') center/cover no-repeat;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      border: 60px solid rgba(30,127,116,.12);
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      right: 8%;
      bottom: -40px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 36px solid rgba(255,255,255,.06);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 0 8%;
      max-width: 760px;
      animation: fadeUp .9s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag {
      display: inline-block;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--teal-light);
      border: 1px solid rgba(43,163,150,.4);
      padding: .3rem .9rem;
      border-radius: 40px;
      margin-bottom: 1.5rem;
      animation: fadeUp .9s .1s ease both;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 1rem;
      animation: fadeUp .9s .2s ease both;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--teal-light);
      font-weight: 500;
    }

    .hero-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,.8);
      max-width: 520px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      animation: fadeUp .9s .3s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: nowrap;
      align-items: center;
      animation: fadeUp .9s .4s ease both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .04em;
      text-decoration: none;
      border-radius: 40px;
      padding: .85rem 2rem;
      transition: all .25s;
      border: 2px solid transparent;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--teal);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--teal-light);
      box-shadow: 0 8px 28px rgba(30,127,116,.35);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,.5);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.1);
      border-color: var(--white);
    }

    .btn-secondary {
      background: rgba(255,255,255,.15);
      color: var(--white);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,.25);
      transform: translateY(-2px);
    }

    /* hero stats bar */
    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: center;
      gap: 0;
    }
    .stat {
      flex: 1;
      max-width: 200px;
      padding: 1.4rem 1rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--teal-light);
      line-height: 1;
    }
    .stat-label {
      font-size: .76rem;
      color: rgba(255,255,255,.65);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: .2rem;
    }

    /* ── SECTION BASE ── */
    section {
      padding: 6rem 0;
      margin-bottom: auto;
    }

    .section-tag {
      display: inline-block;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: .8rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .section-line {
      width: 48px;
      height: 2px;
      background: var(--teal);
      margin-bottom: 2rem;
    }

    /* ── ABOUT ── */
    #about { background: var(--cream); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 6rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 2px;
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--teal);
      color: var(--white);
      border-radius: 2px;
      padding: 1.2rem 1.5rem;
      box-shadow: var(--shadow-hover);
    }
    .about-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 600;
      line-height: 1;
    }
    .about-badge-text {
      font-size: .75rem;
      opacity: .85;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .about-text p {
      color: var(--gray);
      margin-bottom: 1.2rem;
      font-size: .98rem;
    }

    .credentials {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      margin-top: 2rem;
    }
    .cred {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 40px;
      padding: .4rem 1rem;
      font-size: .8rem;
      font-weight: 500;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: .4rem;
    }
    .cred::before { content: '✓'; color: var(--teal); font-weight: 700; }

    /* ── PHILOSOPHY ── */
    #philosophy {
      background: #f7f5f2;
      position: relative;
      overflow: hidden;
    }

    .philosophy-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 6rem;
      align-items: start;
    }

    .philosophy-para {
      color: #4a5568;
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 2.2rem;
      max-width: 420px;
    }

    .philosophy-btn {
      display: inline-flex;
      font-size: .9rem;
    }

    .philosophy-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .pillar {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.8rem 1.6rem;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: .9rem;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .pillar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--teal);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }
    .pillar:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
    .pillar:hover::after { transform: scaleX(1); }

    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--teal);
      line-height: 1;
      transition: color .3s;
    }
    .pillar:hover .pillar-num { color: var(--teal-light); }
    .pillar-body p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

    /* ── SERVICES ── */
    #services { background: var(--white); margin-left: 150px; }

    .services-header {
      max-width: 560px;
      margin-bottom: 3.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
    }

    .service-card {
      background: var(--cream);
      border-radius: var(--radius);
      border: 1px solid transparent;
      transition: all .3s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--teal);
      transition: height .35s;
      z-index: 1;
    }
    .service-card:hover {
      background: var(--white);
      border-color: var(--border);
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }
    .service-card:hover::before { height: 100%; }

    .service-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .service-text { padding: 1.8rem 2rem; }
    .service-text h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--navy); }
    .service-text p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

    /* ── CONDITIONS ── */
    #conditions { background: var(--navy); }

    .conditions-inner {
      max-width: 1100px;
      margin: 0;
      margin-left: 150px;
      margin-right: 0;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: start;
    }

    .conditions-left .section-tag { color: var(--teal-light); }
    .conditions-left .section-title { color: var(--white); }
    .conditions-left .section-line { background: var(--teal-light); }
    .conditions-left p { color: rgba(255,255,255,.6); font-size: .93rem; }

    .conditions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .condition-item {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 1.4rem 1.6rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all .25s;
    }
    .condition-item:hover {
      background: rgba(30,127,116,.18);
      border-color: var(--teal);
      transform: translateX(4px);
    }
    .condition-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--teal-light);
      flex-shrink: 0;
    }
    .condition-item span {
      color: rgba(255,255,255,.85);
      font-size: .92rem;
      font-weight: 400;
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--cream); }

    .testimonials-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 3.5rem;
    }
    .testimonials-header .section-line { margin: 0 auto 2rem; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: all .3s;
    }
    .testimonial-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .stars {
      color: var(--teal);
      font-size: 1rem;
      letter-spacing: .1em;
      margin-bottom: 1rem;
    }

    .testimonial-card blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.12rem;
      line-height: 1.65;
      color: var(--navy);
      margin-bottom: 1.5rem;
      font-style: italic;
      font-weight: 400;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      gap: .85rem;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }
    .avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal-pale), var(--teal));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: .85rem;
      font-weight: 600;
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 500; font-size: .9rem; color: var(--navy); }
    .testimonial-detail { font-size: .78rem; color: var(--gray); }

    /* ── CONTACT ── */
    #contact {
      background: var(--white);
      padding-bottom: 4rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      max-width: 1100px;
      margin: 0 auto;
      align-items: stretch;
    }

    .contact-info {
      background: linear-gradient(145deg, #ffffff, #f8f8f8);
      border-radius: 24px;
      padding: 2.5rem;
      border: 1px solid var(--border);
      box-shadow: 0 22px 45px rgba(0,0,0,.08);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .contact-info h2 { margin-bottom: .6rem; font-size: 2rem; }
    .contact-info p {
      color: var(--gray);
      margin-bottom: 2.5rem;
      font-size: .95rem;
      line-height: 1.7;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: .85rem;
      margin-bottom: 1rem;
      padding: .75rem .9rem;
      background: linear-gradient(145deg, #ffffff, #f8f8f8);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 8px 18px rgba(0,0,0,.05);
      transition: all .25s ease;
    }
    .contact-detail:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(0,0,0,.10);
    }

    .contact-icon {
      width: 48px; height: 48px;
      background: linear-gradient(145deg, var(--teal-pale), #dff4f1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      color: var(--teal);
      box-shadow: inset 0 2px 6px rgba(255,255,255,.7), 0 8px 14px rgba(30,127,116,.12);
    }

    .contact-detail-text strong {
      display: block;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gray);
      margin-bottom: .2rem;
    }
    .contact-detail-text span {
      font-size: .96rem;
      color: var(--navy);
      font-weight: 600;
    }

    .contact-form {
      background: linear-gradient(145deg, #ffffff, #f8f8f8);
      border-radius: 24px;
      padding: 2.5rem;
      border: 1px solid var(--border);
      box-shadow: 0 22px 45px rgba(0,0,0,.08);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 1.2rem;
    }

    .form-group label {
      font-size: .78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gray);
      margin-bottom: .5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      font-family: 'DM Sans', sans-serif;
      font-size: .93rem;
      color: var(--navy);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: .9rem 1rem;
      outline: none;
      width: 100%;
      transition: all .25s ease;
      box-shadow: inset 0 2px 5px rgba(0,0,0,.03);
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 4px rgba(30,127,116,.10);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      width: 100%;
      justify-content: center;
      font-size: .95rem;
      padding: 1rem 2rem;
      background: linear-gradient(145deg, var(--teal), #166f65);
      color: var(--white);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all .25s ease;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      letter-spacing: .03em;
      box-shadow: 0 14px 24px rgba(30,127,116,.25);
    }
    .form-submit:hover {
      background: linear-gradient(145deg, var(--navy), #08192e);
      transform: translateY(-3px);
      box-shadow: 0 18px 30px rgba(11,31,58,.28);
    }

    /* ── MAP ── */
    .map-heading {
      text-align: center;
      margin: -5rem 0 1.2rem;
    }
    .map-heading span {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: linear-gradient(145deg, var(--teal-pale), #dff4f1);
      border: 1px solid rgba(30,127,116,.18);
      border-radius: 50px;
      padding: .5rem 1.4rem;
      font-size: .78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--teal);
    }
    .map-heading h3 {
      margin-top: .75rem;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }
    .map-heading h3 em { font-style: normal; color: var(--teal); }
    .map-heading p {
      margin-top: .5rem;
      font-size: .95rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .map-placeholder {
      margin: 0 auto;
      width: 100%;
      max-width: 800px;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #ddd;
      background: #f5f5f5;
      box-shadow: 0 18px 35px rgba(0,0,0,.10);
      display: block;
    }
    .map-placeholder iframe { width: 100%; height: 100%; border: 0; display: block; }

   /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 3rem 8%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
     margin-top: auto;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size:20px;
      color: var(--white);
      font-weight: 500;
    }
    .footer-brand span { color: var(--teal-light); }

    .footer-copy {
      font-size: 1x;
      color: rgba(255,255,255,.4);
      margin-top: .3rem;
    }

    .footer-social {
      display: flex;
      gap: .8rem;
    }
    .social-link {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      text-decoration: none;
      transition: all .2s;
    }
    .social-link:hover {
      border-color: var(--teal-light);
      color: var(--teal-light);
      background: rgba(43,163,150,.1);
    }

    /* ══════════════════════════════════════
       MOBILE RESPONSIVE — max-width: 768px
    ══════════════════════════════════════ */
    @media (max-width: 768px) {

      /* NAV */
      .hamburger { display: flex; }
      .nav-links {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 5%;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 1rem;
        transform: translateY(-120%);
        transition: transform .3s;
        z-index: 99;
      }
      .nav-links.open { transform: translateY(0); }

      /* SECTIONS */
      section { padding: 3.5rem 5%; }

      /* HERO */
      .hero { min-height: 100svh; align-items: flex-end; padding-bottom: 3rem; }
      .hero-content { padding: 0 5%; max-width: 100%; }
      .hero h1 { font-size: 2.4rem; }
      .hero-sub { font-size: .95rem; margin-bottom: 1.8rem; }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        flex-wrap: wrap;
      }
      .btn { width: 100%; text-align: center; }
      .hero-stats { display: none; }

      /* ABOUT */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 5%;
      }
      .about-img-wrap { display: flex; justify-content: center; }
      .about-img-placeholder img { width: 100%; max-width: 280px; height: auto; border-radius: 8px; }
      .about-badge { bottom: -12px; right: 20px; padding: .9rem 1.1rem; }
      .about-badge-num { font-size: 1.8rem; }
      .about-text { text-align: left; }
      .credentials { gap: .5rem; }
      .cred { font-size: .75rem; }

      /* PHILOSOPHY */
      .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 5%;
      }
      .philosophy-para { max-width: 100%; }
      .philosophy-pillars { grid-template-columns: 1fr; gap: 1rem; }

      /* CONDITIONS */
      .conditions-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 0;
        padding: 0 5%;
      }
      .conditions-grid { grid-template-columns: 1fr; gap: .75rem; }
      .condition-item { padding: 1rem 1.2rem; }

      /* TESTIMONIALS */
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonials-header { padding: 0 5%; }

      /* CONTACT */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
      }
      .contact-info { padding: 1.8rem; }
      .contact-form { padding: 1.8rem; }
      .form-row { grid-template-columns: 1fr; }
      .contact-detail { padding: .65rem .8rem; }
      .contact-detail-text span { font-size: .88rem; }

      /* MAP */
      .map-heading { margin: 0 0 1.2rem; padding: 0 5%; }
      .map-placeholder { height: 260px; border-radius: 12px; }

      /* SERVICES */
      #services { margin-left: 0; }

      /* FOOTER */
      footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 5%;
        gap: 1rem;
      }
      .footer-copy { font-size: .75rem; }
    }

    /* ══════════════════════════════════════
       SMALL PHONES — max-width: 400px
    ══════════════════════════════════════ */
    @media (max-width: 400px) {
      .hero h1 { font-size: 2rem; }
      .section-title { font-size: 1.6rem; }
      .contact-form { padding: 1.3rem; }
      .contact-info { padding: 1.3rem; }
      .about-badge { display: none; }
    }