 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
}
  :root {
    --green-deep: #2E3D22;
    --green-mid: #3D5228;
    --green-light: #4A6333;
    --gold: #C9A84C;
    --gold-light: #E8C96B;
    --gold-pale: #F5E8C0;
    --cream: #FAF6EE;
    --text-dark: #1A2410;
    --text-mid: #3D4A30;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

  /* ══ NAV ══ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 3rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: #60664c;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: background 0.3s;
  }
  .nav-logo img{width:200px;}
  .nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
  .nav-logo .script { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--gold-light); }
  .nav-logo .bold { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; color: rgba(232,201,107,0.6); text-transform: uppercase; }
  .nav-links { display: flex; gap: 2.2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta { background: var(--gold); color: var(--green-deep); padding: 0.55rem 1.5rem; border-radius: 2px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* 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(--gold-light); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* mobile drawer */
  .mobile-drawer {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--green-deep); z-index: 999;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    padding: 3rem 2rem; display: flex; flex-direction: column; gap: 0;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a {
    font-family: 'Playfair Display', serif; font-size: 1.2rem;
    color: var(--cream); text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.15); padding: 1rem 0;
    transition: color 0.2s;
  }
  .mobile-drawer a:hover { color: var(--gold-light); }
  .mobile-drawer .drawer-cta {
    margin-top: 2rem; background: var(--gold); color: var(--green-deep);
    text-align: center; font-family: 'Inter', sans-serif;
    font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 1.1rem; border-radius: 2px; border: none;
  }

  /* ══ HERO — FULL WIDTH BG IMAGE ══ */
  .hero {
    position: relative; width: 100%; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('img/bg.jpg');
    background-size: cover; background-position: center 25%;
  }
  /* layered overlay: left heavy dark → right lighter */
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      100deg,
      rgba(14,22,8,0.93) 0%,
      rgba(20,32,12,0.82) 40%,
      rgba(20,32,12,0.55) 65%,
      rgba(14,22,8,0.30) 100%
    );
  }
  /* gold accent line at bottom */
  .hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 5;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 10rem 5rem 8rem;
    max-width: 680px;
  }
  .hero-eyebrow {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    line-height: 1.05; color: var(--cream);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle-name {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 300; color: rgba(245,232,192,0.75); letter-spacing: 0.06em; margin-bottom: 2rem;
  }
  .hero-desc {
    font-size: 0.95rem; line-height: 1.85;
    color: rgba(255,255,255,0.65); max-width: 460px; margin-bottom: 2.8rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
  .btn-primary {
    background: var(--gold); color: var(--green-deep);
    padding: 0.9rem 2.2rem; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    border-radius: 2px; box-shadow: 0 4px 24px rgba(201,168,76,0.4);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
  .btn-ghost {
    border: 1px solid rgba(201,168,76,0.5); color: var(--gold-light);
    padding: 0.9rem 2.2rem; font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    border-radius: 2px; background: rgba(255,255,255,0.04); backdrop-filter: blur(4px);
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold-light); background: rgba(201,168,76,0.1); }

  /* floating badges top-right */
  .hero-badges {
    position: absolute; top: 50%; right: 4rem; transform: translateY(-50%);
    z-index: 3; display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-end;
  }
  .hero-badge {
    display: flex; align-items: center; gap: 0.65rem;
    background: rgba(14,22,8,0.72); border: 1px solid rgba(201,168,76,0.25);
    backdrop-filter: blur(10px); border-radius: 100px;
    padding: 0.6rem 1.2rem 0.6rem 0.8rem;
    font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.88); white-space: nowrap;
    animation: floatIn 0.6s ease both;
  }
  .hero-badge:nth-child(2) { animation-delay: 0.15s; }
  .hero-badge:nth-child(3) { animation-delay: 0.3s; }
  .hero-badge:nth-child(4) { animation-delay: 0.45s; }
  @keyframes floatIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
  .hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  /* stats bar at hero bottom */
  .hero-stats-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    display: flex; background: rgba(14,22,8,0.78); backdrop-filter: blur(14px);
    border-top: 1px solid rgba(201,168,76,0.18);
  }
  .stat-item {
    flex: 1; padding: 1.4rem 2.5rem;
    border-right: 1px solid rgba(201,168,76,0.12);
    display: flex; align-items: center; gap: 1.2rem;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-light); line-height: 1; white-space: nowrap; }
  .stat-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); line-height: 1.5; }

  /* ══ TICKER STRIP ══ */
  .ticker-strip {
    background: var(--gold); padding: 0.9rem 0; overflow: hidden;
  }
  .ticker-inner {
    display: flex; gap: 3rem; animation: ticker 22s linear infinite; white-space: nowrap;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-item {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green-deep); display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
  }
  .ticker-item::before { content: '✦'; font-size: 0.55rem; }
.about-visual img{border-radius:10px;width:100%;}
  /* ══ ABOUT US ══ */
  #about { background: var(--cream); padding: 3rem 5rem; }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-wrap {
    border-radius: 4px; overflow: hidden;
    background: var(--green-mid);
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  /* clinic entrance placeholder using gradient + SVG */
  .about-img-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  }
  .about-img-inner {
    position: relative; z-index: 2; text-align: center; padding: 2rem;
  }
  .about-img-inner svg { width: 90px; height: 90px; color: var(--gold); opacity: 0.7; margin-bottom: 1rem; }
  .about-img-inner p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: rgba(245,232,192,0.8); }

  /* gold accent card overlapping image */
  .about-accent-card {
    position: absolute; bottom: -2rem; right: -2rem;
    background: var(--gold); color: var(--green-deep);
    padding: 1.5rem 2rem; border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 160px;
  }
  .about-accent-card .big { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; line-height: 1; }
  .about-accent-card .label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem; opacity: 0.75; }

  .about-content .section-eyebrow { margin-bottom: 1rem; }
  .about-content .section-title { margin-bottom: 1.2rem; }
  .about-content .about-lead {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 300;
    color: var(--green-mid); line-height: 1.65; margin-bottom: 1.2rem; font-style: italic;
  }
  .about-content p {
    font-size: 0.92rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem;
  }
  .about-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0;
  }
  .highlight-item {
    background: var(--green-deep); padding: 1.2rem 1.4rem; border-radius: 2px;
    border-left: 3px solid var(--gold);
  }
  .highlight-item h5 { font-size: 0.8rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.3rem; letter-spacing: 0.05em; }
  .highlight-item p { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }

  /* ══ SECTION COMMON ══ */
  section { padding: 5rem 5rem; }
  .section-eyebrow {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-eyebrow::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,168,76,0.5), transparent); max-width: 80px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; color: var(--green-deep); margin-bottom: 1.2rem; }

  /* ══ SERVICES ══ */
  #services { background: var(--green-deep); }
  #services .section-title { color: var(--cream); }
  #services .section-eyebrow { color: var(--gold); }
  #services .section-eyebrow::after { background: linear-gradient(90deg, rgba(201,168,76,0.4), transparent); }
  .services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
  .services-intro p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 1rem; }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1px; border: 1px solid rgba(201,168,76,0.12); }
  .service-card {
    padding: 2rem 1.5rem; background: rgba(255,255,255,0.025);
    border-right: 1px solid rgba(201,168,76,0.08); border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: background 0.25s; cursor: default; position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
  }
  .service-card:hover { background: rgba(201,168,76,0.06); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon { width: 34px; height: 34px; margin-bottom: 1rem; color: var(--gold); opacity: 0.8; }
  .service-card h4 { font-size: 0.86rem; font-weight: 600; color: var(--cream); letter-spacing: 0.02em; line-height: 1.35; }
.service-card img{width:100%;border-radius:10px;margin-bottom:10px;}
  /* ══ TREATMENTS ══ */
  #treatments { background: var(--cream); }
  .treatment-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
  .treatment-pair:last-child { margin-bottom: 0; }
  .treatment-pair.reverse .treatment-content { order: 1; }
  .treatment-pair.reverse .treatment-visual { order: 2; }
  .treatment-visual {
    background: var(--green-mid); border-radius: 4px; 
    position: relative; overflow: hidden; min-height: 320px;
    display: flex; align-items: center; justify-content: center;
  }
  .treatment-visual::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(201,168,76,0.07)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
  }
  .treatment-big-text { font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(201,168,76,0.12); position: absolute; bottom: 1rem; right: 1.5rem; line-height: 1; font-weight: 700; }
  .treatment-badge { position: relative; z-index: 2; text-align: center; }
  .treatment-badge svg { width: 80px; height: 80px; color: var(--gold-light); margin-bottom: 1rem; }
  .treatment-badge p { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); font-style: italic; }
  .treatment-content h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--green-deep); line-height: 1.15; margin-bottom: 1rem; }
  .treatment-content p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }
  .benefit-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
  .benefit-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--text-mid); }
  .benefit-list li::before {
    content: ''; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: var(--gold);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%232E3D22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  }

  /* ══ WHY US ══ */
  #why { background: var(--green-deep); padding-bottom: 6rem; }
  #why .section-title { color: var(--cream); }
  #why .section-eyebrow { color: var(--gold); }
  #why .section-eyebrow::after { background: linear-gradient(90deg, rgba(201,168,76,0.4), transparent); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
  .why-card { padding: 2.5rem 2rem; background: rgba(255,255,255,0.025); border: 1px solid rgba(201,168,76,0.1); }
  .why-number { font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(201,168,76,0.1); line-height: 1; margin-bottom: 0.5rem; font-weight: 700; }
  .why-card h4 { font-size: 1rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.6rem; }
  .why-card p { font-size: 0.84rem; line-height: 1.75; color: rgba(255,255,255,0.5); }

  /* ══ CONTACT ══ */
  #contact { background: var(--cream); }
  .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact-info p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 2rem; }
  .contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
  .contact-icon-wrap { width: 40px; height: 40px; flex-shrink: 0; background: var(--green-deep); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
  .contact-icon-wrap svg { width: 18px; height: 18px; color: var(--gold); }
  .contact-item-text strong { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
  .contact-item-text span { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; }
  .contact-form-wrap { background: var(--green-deep); padding: 2.5rem; border-radius: 4px; }
  .contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--cream); margin-bottom: 0.4rem; }
  .contact-form-wrap > p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.8rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
  .form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream); padding: 0.75rem 1rem; font-size: 0.88rem;
    font-family: 'Inter', sans-serif; border-radius: 2px; outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--green-deep); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%; background: var(--gold); color: var(--green-deep);
    border: none; cursor: pointer; padding: 0.9rem;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 2px; transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ══ FOOTER ══ */
  footer {
    background: var(--text-dark); padding: 2rem 5rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  }
  footer p { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
  .footer-logo { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--gold); }

  /* floating CTA */
  .float-cta {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    background: var(--gold); color: var(--green-deep);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; padding: 0.9rem 1.5rem; border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .float-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }
  .float-cta svg { width: 16px; height: 16px; }

  /* fade-in animation */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    nav { padding: 0 1.5rem; }

    section { padding: 4rem 1.5rem; }
    #about { padding: 4rem 1.5rem; }

    .hero-content { padding: 1rem .5rem 1rem; }
    .hero-badges { display: none; }
    .hero-stats-bar { position: relative; flex-wrap: wrap; display:none;}
    .stat-item { flex: 1 1 50%; min-width: 0; padding: 1rem 1.2rem; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-wrap { aspect-ratio: 3/2; }
    .about-accent-card { right: 0; bottom: -1.5rem; }
    .about-highlights { grid-template-columns: 1fr; }

    .services-intro { grid-template-columns: 1fr; gap: 1rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .treatment-pair { grid-template-columns: 1fr; gap: 2rem; }
    .treatment-pair.reverse .treatment-content,
    .treatment-pair.reverse .treatment-visual { order: unset; }

    .why-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    footer { flex-direction: column; padding: 1.5rem; text-align: center; }
    .float-cta { bottom: 1rem; right: 1rem; }
  }