  :root {
    --primary: #1a1a2e;
    --accent: #c9a96e;
    --accent-light: #e8d5b0;
    --white: #ffffff;
    --off-white: #f8f6f2;
    --text: #3a3a3a;
    --text-light: #777;
    --border: #e0d9cf;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
  }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ── HEADER ── */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
  }

  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 76px;
    gap: 2rem;
  }

  .logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
  }
  .logo-top span { color: var(--accent); }
  .logo-sub {
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Main Nav */
  .main-nav { margin-left: auto; }
  .main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .main-nav > ul > li {
    position: relative;
  }
  .main-nav > ul > li > a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    border-radius: 4px;
  }
  .main-nav > ul > li > a:hover,
  .main-nav > ul > li.active > a {
    color: var(--accent);
  }

  /* Dropdown */
  .has-dropdown { position: relative; }
  .has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7rem;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    min-width: 220px;
    padding: 0.75rem 0 0.5rem;
    margin-top: 0;
    /* invisible top padding acts as a hover bridge so mouse can travel into the menu */
    padding-top: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  /* Decorative top border inside the padding bridge */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--border);
  }
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    color: var(--text);
    font-size: 0.88rem;
    transition: background 0.15s, color 0.15s;
  }
  .dropdown-menu li a:hover {
    background: var(--off-white);
    color: var(--accent);
  }
  .dropdown-menu li a .dd-icon {
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .dropdown-menu li a:hover .dd-icon {
    background: #f0e6d3;
  }

  /* Appointment CTA */
  .header-cta a {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #b8924f);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .header-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,169,110,0.4);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
  .mobile-menu ul li a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
  }
  .mobile-submenu { padding-left: 1rem; display: none; }
  .mobile-submenu.open { display: block; }
  .mobile-submenu a {
    font-size: 1rem !important;
    color: rgba(255,255,255,0.65) !important;
    border-bottom: none !important;
    padding: 0.4rem 0 !important;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.6) 60%, rgba(201,169,110,0.15) 100%),
      url('../images/new/banner.png') center/cover no-repeat;
  }

  .hero-decor {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 520px;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
  }
  .hero-decor2 {
    position: absolute;
    right: 8%;
    top: 48%;
    transform: translateY(-50%);
    width: 340px;
    height: 420px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-53%) scale(1.02); }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--accent-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    max-width: 620px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 span { color: var(--accent); display: block; }

  .hero-text {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--accent), #b8924f);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.4);
  }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.7);
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION COMMON ── */
  .section { padding: 6rem 0; }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .section-desc {
    color: var(--text-light);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ── SERVICES ── */
  .services { background: var(--off-white); }

  .services-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .services-header .section-desc { margin: 0 auto; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #b8924f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--accent-light);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f5ede0, #ead5b4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
  }
  .service-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 1.25rem;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 0.7rem; }

  /* ── ABOUT / WHY ── */
  .about { background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-image {
    position: relative;
  }
  .about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    height: 520px;
  }
  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(201,169,110,0.4);
  }
  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .about-badge-text { font-size: 0.75rem; opacity: 0.9; margin-top: 4px; }

  .about-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .about-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .point-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }
  .point-text { color: var(--text); line-height: 1.6; font-size: 0.93rem; }

  /* ── PROCESS ── */
  .process { background: var(--primary); }
  .process .section-title { color: var(--white); }
  .process .section-label { color: var(--accent); }
  .process .section-desc { color: rgba(255,255,255,0.6); }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
  }

  /* ── RESULTS GALLERY ── */
  .results {
    background: var(--white);
  }
  .results-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .result-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }
  .result-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.45s ease;
  }
  .result-card:hover img { transform: scale(1.06); }
  .result-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.15rem;
    background: linear-gradient(180deg, rgba(26,26,46,0) 0%, rgba(26,26,46,0.88) 100%);
  }
  .result-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(201,169,110,0.9);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
  }

  .process-step {
    text-align: center;
    position: relative;
  }
  .process-step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 1.5rem;
    color: rgba(201,169,110,0.4);
    font-size: 1.4rem;
  }
  .process-step:last-child::after { display: none; }

  .step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(201,169,110,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--accent);
    margin: 0 auto 1.25rem;
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .step-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

  /* ── APPOINTMENT FORM ── */
  .appointment { background: var(--off-white); }
  .appt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .appt-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  }
  .appt-form h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  .appt-form p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  }
  .form-full { grid-column: 1 / -1; }

  .submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent), #b8924f);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
  }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.35);
  }

  .contact-info { padding-top: 1rem; }
  .contact-info h3 { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
  .contact-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; }

  .info-items { display: flex; flex-direction: column; gap: 1.5rem; }
  .info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f5ede0, #ead5b4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 2px;
  }
  .info-value { color: var(--text); font-size: 0.93rem; line-height: 1.5; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a4e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.12), transparent 70%);
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .cta-text h2 { font-size: 2.5rem; color: var(--white); }
  .cta-text p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
  .cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 600;
  }

  /* ── FOOTER ── */
  footer {
    background: #111126;
    color: rgba(255,255,255,0.65);
    padding: 5rem 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
  }
  .footer-logo-top span { color: var(--accent); }
  .footer-logo-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }
  .footer-about p { font-size: 0.88rem; line-height: 1.75; }

  .footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,169,110,0.3);
  }
  .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .footer-links a::before { content: '›'; color: var(--accent); }
  .footer-links a:hover { color: var(--accent); }

  .footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .footer-bar {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
  }
  .footer-bar a { color: var(--accent); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .about-grid, .appt-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-image { order: -1; }
    .about-image img { height: 380px; }
  }

  @media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .process-step::after { display: none; }
    .hero-decor, .hero-decor2 { display: none; }
    .about-badge { display: none; }
    .cta-inner { text-align: center; justify-content: center; }
    .hero-stats { gap: 1.5rem; }
  }
