  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ivory: #F8F6F0;
    --ivory-dark: #EDE9DF;
    --forest: #1B3A2D;
    --forest-mid: #2C5A44;
    --forest-light: #3D7A5E;
    --gold: #B8975A;
    --gold-light: #D4B07A;
    --text: #1A1A18;
    --text-muted: #5A5A52;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    background: rgba(248,246,240,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-cta {
    background: var(--forest);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--forest-mid) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--forest);
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 5% 6rem 8%;
    position: relative;
    z-index: 2;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s forwards;
  }
  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--ivory);
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(248,246,240,0.65);
    margin-top: 1.8rem;
    max-width: 400px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--forest);
    padding: 1rem 2.2rem;
    border-radius: 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    color: rgba(248,246,240,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--ivory); }
  .btn-ghost::after {
    content: '→';
    transition: transform 0.2s;
  }
  .btn-ghost:hover::after { transform: translateX(4px); }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(248,246,240,0.12);
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248,246,240,0.5);
    margin-top: 0.3rem;
  }

  /* HERO RIGHT — image area */
  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2C5A44 0%, #1B3A2D 60%, #0E2318 100%);
  }
  .hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    border: 1px solid var(--gold);
  }
  .hero-circle-1 { width: 600px; height: 600px; top: -100px; right: -150px; }
  .hero-circle-2 { width: 400px; height: 400px; top: 100px; right: 50px; opacity: 0.05; }
  .hero-img-card {
    position: absolute;
    inset: 3rem;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(165deg, #3D7A5E22 0%, #1B3A2D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tooth-illustration {
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards;
  }
  .tooth-illustration svg {
    width: 240px;
    height: 240px;
    filter: drop-shadow(0 0 40px rgba(184,151,90,0.25));
  }
  .floating-badge {
    position: absolute;
    background: rgba(248,246,240,0.96);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .badge-1 { bottom: 4rem; left: -2rem; animation: float 4s ease-in-out infinite; }
  .badge-2 { top: 5rem; right: -1.5rem; animation: float 4s ease-in-out 2s infinite; }
  .badge-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
  .badge-value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--forest); margin-top: 0.2rem; }

  /* SERVICES */
  section { padding: 7rem 8%; }
  .section-tag {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .section-tag::before { content: ''; display: inline-block; width: 2rem; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest);
    max-width: 600px;
  }
  .section-title em { font-style: italic; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    border: 1.5px solid var(--ivory-dark);
    border-radius: 20px;
    overflow: hidden;
  }
  .service-card {
    background: var(--white);
    padding: 2.5rem;
    cursor: default;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
  }
  .service-card:hover { background: var(--ivory); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px;
    background: var(--forest);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .service-icon svg { width: 26px; height: 26px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.8rem;
  }
  .service-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 0.7rem; }

  /* ABOUT STRIP */
  .about-strip {
    background: var(--forest);
    padding: 6rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-strip .section-tag { color: var(--gold-light); }
  .about-strip .section-tag::before { background: var(--gold-light); }
  .about-strip .section-title { color: var(--ivory); }
  .about-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(248,246,240,0.65);
    font-weight: 300;
    margin-top: 1.5rem;
  }
  .feature-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: rgba(248,246,240,0.8);
  }
  .feature-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .about-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(248,246,240,0.1);
    border-radius: 18px;
    padding: 2rem;
  }
  .about-card:nth-child(2) { margin-top: 2rem; }
  .about-card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .about-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.5rem;
  }
  .about-card-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(248,246,240,0.5);
  }

  /* TESTIMONIALS */
  .testimonials { background: var(--ivory); }
  .testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid var(--ivory-dark);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(27,58,45,0.08);
  }
  .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--forest);
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--forest-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--ivory);
    font-weight: 600;
  }
  .author-name { font-size: 0.88rem; font-weight: 500; color: var(--text); }
  .author-since { font-size: 0.78rem; color: var(--text-muted); }

  /* CTA SECTION */
  .cta-section {
    background: var(--ivory-dark);
    padding: 6rem 8%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    border-radius: 0;
  }
  .cta-section .section-title { max-width: none; }
  .cta-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 1.2rem;
  }
  .contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--ivory-dark);
  }
  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--ivory);
    border: 1.5px solid var(--ivory-dark);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--forest-light); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background: var(--forest);
    color: var(--ivory);
    border: none;
    border-radius: 3rem;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }
  .form-submit:hover { background: var(--forest-mid); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--text);
    padding: 4rem 8% 2.5rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo { display: block; margin-bottom: 1rem; color: var(--ivory); }
  .footer-brand .nav-logo span { color: var(--gold); }
  .footer-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.4); font-weight: 300; }
  .footer-heading { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--ivory); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
  }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.25); text-decoration: none; }

  /* 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(-10px); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    nav { padding: 1rem 5%; }
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-strip { grid-template-columns: 1fr; gap: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 600px) {
    section { padding: 5rem 5%; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-right { grid-template-columns: 1fr; }
  }