:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --cream: #FAF8F5;
    --charcoal: #1A1A1A;
    --mid: #4A4A4A;
    --soft: #8A8A8A;
    --white: #FFFFFF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: all 0.3s ease;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--charcoal);
    text-transform: uppercase;
  }

  .nav-logo span {
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 10px 24px;
    border: 1px solid var(--charcoal);
    transition: all 0.3s ease !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
  }

  .hero-left::before {
    content: 'GEMINI';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 32px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.9;
    color: var(--soft);
    max-width: 420px;
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 0.3px;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .btn-primary {
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 36px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--charcoal);
  }

  .btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  .btn-secondary {
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--charcoal);
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .hero-badge {
    position: absolute;
    bottom: 48px;
    left: -28px;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  }

  .hero-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .hero-badge-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft);
    margin-top: 6px;
    display: block;
  }

  /* MARQUEE */
  .marquee-section {
    background: var(--charcoal);
    padding: 20px 0;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 0 40px;
    font-weight: 300;
  }

  .marquee-dot {
    color: var(--gold);
    padding: 0 8px;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }

  .about-images {
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
  }

  .about-img-1 {
    width: 70%;
    height: 75%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 40px;
    left: 40px;
  }

  .about-img-2 {
    width: 55%;
    height: 50%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    bottom: 40px;
    right: 0;
    border: 6px solid var(--charcoal);
    box-shadow: -20px -20px 0 var(--gold);
  }

  .about-content {
    padding: 100px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 3.5vw, 58px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 28px;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .section-body {
    font-size: 13px;
    line-height: 2;
    color: var(--soft);
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 460px;
  }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 36px 0;
  }

  .stat-row {
    display: flex;
    gap: 48px;
    margin-top: 8px;
  }

  .stat {}

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft);
    margin-top: 6px;
  }

  /* SERVICES */
  .services {
    padding: 120px 80px;
    background: var(--cream);
  }

  .services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(201,168,76,0.15);
  }

  .service-card {
    background: var(--cream);
    padding: 52px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    z-index: 1;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 24px;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 12px;
    line-height: 1.9;
    color: var(--soft);
    font-weight: 300;
  }

  .service-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }

  .service-link:hover { border-color: var(--gold); }

  /* TREATMENT / SCAR */
  .treatment-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 70vh;
    background: var(--charcoal);
  }

  .treatment-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .treatment-content .section-eyebrow { color: var(--gold-light); }
  .treatment-content .section-eyebrow::before { background: var(--gold-light); }
  .treatment-content .section-title { color: var(--white); }
  .treatment-content .section-body { color: rgba(255,255,255,0.5); }

  .treatment-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }

  .quote-block {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin: 32px 0;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.5;
  }

  /* PROCESS */
  .process {
    padding: 120px 80px;
    background: var(--white);
  }

  .process-header {
    max-width: 600px;
    margin-bottom: 72px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: rgba(201,168,76,0.3);
  }

  .process-step {
    padding: 0 32px 0 0;
    position: relative;
  }

  .step-dot {
    width: 56px;
    height: 56px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--white);
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 300;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
  }

  .step-desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--soft);
    font-weight: 300;
  }

  /* TESTIMONIAL */
  .testimonials {
    padding: 120px 80px;
    background: var(--cream);
    text-align: center;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 72px;
    text-align: left;
  }

  .testimonial-card {
    background: var(--white);
    padding: 40px;
    border-top: 2px solid var(--gold);
  }

  .testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .testimonial-author {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft);
    font-weight: 500;
  }

  /* CTA */
  .cta-section {
    padding: 140px 80px;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    position: relative;
  }

  .cta-title em {
    font-style: italic;
    color: var(--gold);
  }

  .cta-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 52px;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 18px 48px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
  }

  .btn-gold:hover {
    background: transparent;
    color: var(--gold);
  }

  .btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 18px 48px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
  }

  .btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* FOOTER */
  footer {
    background: #111;
    padding: 80px 80px 40px;
    color: rgba(255,255,255,0.5);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 60px;
  }

  .footer-brand {}

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .footer-logo span { color: var(--gold); }

  .footer-tagline {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    max-width: 260px;
    margin-bottom: 28px;
  }

  .social-links {
    display: flex;
    gap: 16px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    transition: all 0.3s;
  }

  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
  }

  /* SCROLL ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .fade-up-delay-4 { transition-delay: 0.4s; }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 60vw; min-height: 340px; }
    .hero-left { padding: 60px 24px 40px; }
    .about { grid-template-columns: 1fr; }
    .about-images { height: 70vw; }
    .about-content { padding: 60px 24px; }
    .services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .treatment-feature { grid-template-columns: 1fr; }
    .treatment-content { padding: 60px 24px; }
    .process { padding: 80px 24px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    .testimonials { padding: 80px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 80px 24px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    footer { padding: 60px 24px 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

/* ===== SUBPAGE & BLOG ADDITIONS ===== */
.page-hero {
  padding: 170px 24px 70px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-hero .section-eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

/* Blog listing */
.blog-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  gap: 48px;
}
.blog-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s ease, transform .3s ease;
}
.blog-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.blog-card-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-card-meta {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-card-excerpt { font-size: 14px; line-height: 1.8; color: var(--mid); font-weight: 300; margin-bottom: 20px; }
.blog-card-link { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
.blog-card:hover .blog-card-link { color: var(--gold); }

/* Blog article */
.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 24px 100px;
}
.post-meta {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  text-align: center;
}
.post h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
}
.post h1 em { font-style: italic; color: var(--gold); }
.post-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--mid);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}
.post-hero-img { width: 100%; height: 420px; object-fit: cover; margin-bottom: 48px; }
.post h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin: 48px 0 18px;
}
.post h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 32px 0 12px;
}
.post p { font-size: 15px; line-height: 1.95; color: var(--mid); font-weight: 300; margin-bottom: 20px; }
.post ul, .post ol { margin: 0 0 20px 22px; }
.post li { font-size: 15px; line-height: 1.9; color: var(--mid); font-weight: 300; margin-bottom: 8px; }
.post strong { color: var(--charcoal); font-weight: 500; }
.post a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-light); }
.post a:hover { border-bottom-color: var(--gold); }
.post-pullquote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
}
.post-cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 44px 40px;
  text-align: center;
  margin: 56px 0 0;
}
.post-cta h2 { margin: 0 0 12px; color: var(--white); }
.post-cta p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.post-cta .btn-gold { display: inline-block; }

@media (max-width: 768px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { height: 220px; min-height: 0; }
  .blog-card-body { padding: 28px 24px; }
  .post { padding: 140px 24px 80px; }
  .post-hero-img { height: 240px; }
}
