  /* ── DESIGN TOKENS ── */
  :root {
    --primary:      #111111;   /* Black replaces navy */
    --primary-dark: #000000;
    --accent:       #bb9338;   /* Updated gold */
    --accent-light: #d4aa55;
    --white:        #ffffff;
    --light-bg:     #f5f7fa;
    --text:         #2d3748;
    --text-light:   #000000;
    --border:       #e2e8f0;
    --radius:       10px;
    --shadow:       0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: Montserrat, sans-serif;
    color: var(--text);
    line-height: 1.75;
    font-size: 17px;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
  }

  img { max-width: 100%; display: block; }
  a   { text-decoration: none; color: inherit; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
  }
  .btn-primary:hover {
    background: #602f28;
    border-color: #602f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96,47,40,0.38);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  .btn-outline:hover {
    background: #602f28;
    border-color: #602f28;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96,47,40,0.38);
  }

  .btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
  .btn-dark:hover {
    background: #602f28;
    border-color: #602f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96,47,40,0.30);
  }

  /* ── UTILITIES ── */
  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    margin-bottom: 16px;
  }

  .section-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 580px;
  }

  /* ── PHONE NUMBER GLOBAL STYLE ── */
  .phone-num {
    color: var(--accent-light);
    font-size: 21px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
  }

  /* ════════════════════════════════
     HEADER
  ════════════════════════════════ */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    transition: box-shadow 0.3s;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*height: 72px;*/
    gap: 20px;
  }

  .logo img {
    height: 90px;
    object-fit: contain;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
  }

  nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s;
  }
  nav a:hover           { color: var(--accent); }
  nav a:hover::after    { width: 100%; }

  /* Phone + CTA aligned in one line */
  .header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: #602f28;
    padding: 0;
    font-weight: 800;
    font-size: 21px;
    font-family: 'Playfair Display', serif;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .header-phone svg { fill: #602f28; }
  .header-phone:hover { color: var(--accent-light); }

  .header-consult {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: var(--white);
    padding: 9px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .header-consult:hover {
    background: #602f28;
    transform: translateY(-1px);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ════════════════════════════════
     HERO
  ════════════════════════════════ */
  #hero {
    min-height: 100vh;
    background:
      linear-gradient(135deg, rgba(5,5,5,0.88) 0%, rgba(30,30,30,0.80) 60%, rgba(10,10,10,0.85) 100%),
      url('../images/slide44.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 110px 0 80px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(187,147,56,0.18);
    border: 1px solid rgba(187,147,56,0.45);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
  }
  .hero-title span { color: var(--accent-light); }

  .hero-sub {
    color: rgba(255,255,255,1);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 500px;
  }

  /* Phone + CTA same line in hero */
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .hero-stats {
    display: flex;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,1);
    flex-wrap: wrap;
  }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,1);
    margin-top: 4px;
  }

  /* Hero Bullets */
  .hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
  }
  .hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,1);
    font-size: 15.5px;
    line-height: 1.5;
  }
  .hero-bullet-icon {
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 900;
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* Hero Form */
  .hero-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.32);
    border-top: 4px solid var(--accent);
  }
  .hero-form-title {
    font-size: 1.45rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
  }
  .hero-form-sub {
    color: var(--text-light);
    font-size: 13.5px;
    margin-bottom: 22px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: #fafbfc;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(187,147,56,0.12);
    background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 88px; }

  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
  }
  .form-submit:hover {
    background: #602f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96,47,40,0.38);
  }
  .form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
  }

  /* ════════════════════════════════
     PHONE BAR
  ════════════════════════════════ */
  .phone-bar {
    background: var(--accent);
    padding: 13px 0;
    border-bottom: none;
  }
  .phone-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .phone-bar span { color: #ffffff; font-size: 15px; font-weight: 600; }
  .phone-bar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    /*font-family: 'Playfair Display', serif;*/
    transition: color 0.2s;
  }
  .phone-bar a svg { fill: #ffffff; }
  .phone-bar a:hover { color: var(--white); }

  /* ════════════════════════════════
     ABOUT
  ════════════════════════════════ */
  #about { padding: 96px 0; background: var(--white); }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0 28px;
  }
  .highlight-item { display: flex; gap: 14px; align-items: flex-start; }
  .highlight-icon {
    width: 42px; height: 42px;
    background: rgba(187,147,56,0.10);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
  }
  .highlight-text h4 {
    font-size: 15px; font-weight: 700;
    color: var(--primary-dark); margin-bottom: 2px;
    font-family: Montserrat, sans-serif;
  }
  .highlight-text p { font-size: 14px; color: var(--text-light); }

  .about-img-wrap { position: relative; }
  .about-img-wrap img {
    width: 100%; height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .about-badge {
    position: absolute;
    bottom: 28px; left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    text-align: center;
  }
  .about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 800;
    color: var(--accent-light); line-height: 1;
  }
  .about-badge-label { font-size: 12px; color: rgba(255,255,255,1); margin-top: 4px; }

  /* Phone strip in about */
  .about-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-top: 22px;
  }
  .about-phone-icon {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .about-phone-icon svg { fill: white; width: 19px; height: 19px; }
  .about-phone-text small {
    display: block; font-size: 11px;
    color: var(--text-light); font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
  }
  .about-phone-text a {
    font-weight: 800; font-size: 21px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-light); transition: color 0.2s;
  }
  .about-phone-text a:hover { color: var(--accent); }

  /* ════════════════════════════════
     SERVICES
  ════════════════════════════════ */
  #services { padding: 96px 0; background: var(--light-bg); }

  .services-header { text-align: center; margin-bottom: 52px; }
  .services-header .section-desc { margin: 0 auto; text-align: center; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 58px; height: 58px;
    background: rgba(187,147,56,0.12);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 25px; margin-bottom: 18px;
  }
  .service-card h3 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 10px; }
  .service-card p  { font-size: 14.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; flex: 1; }

  /* Service CTA button → scrolls to contact form */
  .service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.3s;
    border: 2px solid var(--accent);
    margin-top: auto;
  }
  .service-cta-btn:hover {
    background: #602f28;
    border-color: #602f28;
    transform: translateY(-2px);
  }

  .service-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 21px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: #602f28;
    transition: color 0.2s;
    justify-content: center;
  }
  .service-phone-link svg { fill: #602f28; }
  .service-phone-link:hover { color: var(--accent); }

  .services-cta {
    margin-top: 44px;
    padding: 30px 36px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .services-cta-text h3   { color: var(--white); font-size: 1.35rem; margin-bottom: 4px; }
  .services-cta-text p    { color: rgba(255,255,255,1); font-size: 15px; }
  .services-cta-phone {
    display: flex; align-items: center; gap: 10px;
    color: var(--accent-light);
    font-size: 21px; font-weight: 800;
    font-family: 'Playfair Display', serif;
  }

  /* ════════════════════════════════
     WHY CHOOSE US
  ════════════════════════════════ */
  #why { padding: 96px 0; background: var(--white); }
  .why-header { text-align: center; margin-bottom: 52px; }
  .why-header .section-desc { margin: 0 auto; text-align: center; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 52px;
  }
  .why-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 38px 28px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary), #222);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 0;
  }
  .why-card:hover::after { opacity: 1; }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
  .why-card > * { position: relative; z-index: 1; }
  .why-icon { font-size: 42px; margin-bottom: 20px; display: block; }
  .why-card h3 { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 12px; transition: color 0.35s; }
  .why-card:hover h3 { color: var(--accent-light); }
  .why-card p  { font-size: 15px; color: var(--text-light); line-height: 1.65; transition: color 0.35s; }
  .why-card:hover p { color: rgba(255,255,255,1); }

  .why-phone-banner {
    background: var(--accent);
    border: none;
    border-radius: 14px;
    padding: 26px 36px;
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
  }
  .why-phone-banner span { color: #ffffff; font-size: 16px; font-weight: 700; }
  .why-phone-banner a {
    display: flex; align-items: center; gap: 8px;
    color: #ffffff; font-size: 18px; font-weight: 800;
    font-family: 'Playfair Display', serif; transition: color 0.2s;
  }
  .why-phone-banner a svg { fill: #ffffff; }
  .why-phone-banner a:hover { color: var(--white); }

  /* ════════════════════════════════
     TEAM
  ════════════════════════════════ */
  #team { padding: 96px 0; background: var(--light-bg); }
  .team-header { text-align: center; margin-bottom: 52px; }
  .team-header .section-desc { margin: 0 auto; text-align: center; }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    text-align: center;
  }
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }

  .team-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .team-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.45s ease;
    display: block;
  }
  .team-card:hover .team-img-wrap img {
    transform: scale(1.04);
  }
  .team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
  }
  .team-card:hover .team-img-overlay { opacity: 1; }

  .team-info {
    padding: 24px 22px 28px;
    position: relative;
  }
  .team-info::before {
    content: '';
    display: block;
    width: 40px; height: 3px;
    background: var(--accent);
    margin: 0 auto 14px;
    border-radius: 2px;
  }
  .team-info h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
    transition: color 0.3s;
  }
  .team-card:hover .team-info h3 { color: var(--accent); }
  .team-role {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-light);
  }

  /* ════════════════════════════════
     TESTIMONIALS — Slider
  ════════════════════════════════ */
  #testimonials {
    padding: 96px 0;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    position: relative;
    overflow: hidden;
  }
  /*#testimonials::before {*/
  /*  content: '"';*/
  /*  position: absolute; top: -20px; left: 4%;*/
  /*  font-size: 280px; font-family: 'Playfair Display', serif;*/
  /*  color: rgba(255,255,255,1); line-height: 1;*/
  /*  pointer-events: none;*/
  /*}*/

  .testimonials-header { text-align: center; margin-bottom: 52px; }
  .testimonials-header .section-label { color: var(--accent-light); }
  .testimonials-header .section-title  { color: var(--white); }

  /* Slider wrapper */
  .slider-outer {
    position: relative;
    overflow: hidden;
  }
  .slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  }
  .testimonial-slide {
    min-width: calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    height: 100%;
  }
  .testimonial-quote {
    font-size: 48px;
    color: var(--accent-light);
    font-family: 'Playfair Display', serif;
    line-height: 1; margin-bottom: 16px; display: block;
  }
  .testimonial-text {
    font-size: 17px;
    color: rgba(255,255,255,1);
    line-height: 1.78; font-style: italic;
    margin-bottom: 24px;
  }
  .testimonial-stars { color: var(--accent-light); font-size: 17px; margin-bottom: 0; }

  /* Slider nav */
  .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }
  .slider-arrow {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  .slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
  .slider-dots { display: flex; gap: 8px; }
  .slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,1);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
  }
  .slider-dot.active { background: var(--accent); transform: scale(1.3); }

  .testimonials-phone { text-align: center; margin-top: 44px; }
  .testimonials-phone p { color: rgba(255,255,255,1); margin-bottom: 12px; font-size: 15px; }
  .testimonials-phone a {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: var(--white);
    padding: 15px 34px; border-radius: var(--radius);
    font-weight: 800; font-size: 21px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s;
  }
  .testimonials-phone a:hover {
    background: #602f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(96,47,40,0.45);
  }

  /* ════════════════════════════════
     FAQ  (equal height columns)
  ════════════════════════════════ */
  #faq { padding: 96px 0; background: var(--light-bg); }
  .faq-header { text-align: center; margin-bottom: 52px; }
  .faq-header .section-desc { margin: 0 auto; text-align: center; }

  .faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch; /* equal height */
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
  }
  .faq-item.open { box-shadow: var(--shadow); }
  .faq-question {
    width: 100%; background: none; border: none;
    padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; cursor: pointer; text-align: left;
    font-family: Montserrat, sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--primary-dark); transition: color 0.2s;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-chevron {
    width: 22px; height: 22px; min-width: 22px;
    background: var(--light-bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--primary);
    transition: transform 0.3s, background 0.3s;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--accent); color: white; }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    padding: 0 20px;
    font-size: 14.5px; color: var(--text-light); line-height: 1.7;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

  /* FAQ Side — fills full column height */
  .faq-side {
    display: flex;
    flex-direction: column;
  }
  .faq-side-card {
    background: var(--primary);
    border-radius: 14px;
    padding: 40px 36px;
    text-align: center;
    color: var(--white);
    flex: 1; /* fills remaining height */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .faq-side-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
  .faq-side-card p  { color: rgba(255,255,255,1); font-size: 15px; margin-bottom: 24px; }
  .faq-side-phone {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    color: var(--accent-light);
    font-size: 21px; font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 22px;
  }

  /* ════════════════════════════════
     CONTACT
  ════════════════════════════════ */
  #contact { padding: 96px 0; background: var(--white); }
  .contact-header { text-align: center; margin-bottom: 52px; }
  .contact-header .section-desc { margin: 0 auto; text-align: center; }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
  }
  .contact-info h3 { font-size: 1.75rem; color: var(--primary-dark); margin-bottom: 14px; }
  .contact-info > p { color: var(--text-light); margin-bottom: 28px; font-size: 16px; }

  .contact-details { display: flex; flex-direction: column; gap: 18px; }
  .contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }
  .contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(187,147,56,0.10);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0; color: var(--accent);
  }
  .contact-detail-text strong {
    display: block; font-size: 12px; font-weight: 700;
    color: var(--primary-dark); letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 3px;
  }
  .contact-detail-text span { font-size: 15px; color: #000000; }
  .contact-detail-text a { 
    font-size: 15px; 
    font-weight: 600; 
    /*font-family: 'Playfair Display', serif; */
    /*color: var(--accent-light); */
    transition: color 0.2s; 
  }
  .contact-detail-text a:hover { color: var(--accent); }

  .contact-form-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px 38px;
    border: 1px solid var(--border);
  }
  .contact-form-card h3 { font-size: 1.55rem; color: var(--primary-dark); margin-bottom: 22px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ════════════════════════════════
     FOOTER
  ════════════════════════════════ */
  #footer {
    background: #0a0a0a;
    padding: 76px 0 0;
    color: rgba(255,255,255,1);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 2.3fr;
    gap: 45px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,1);
  }

  .footer-about img {
    height: 48px; object-fit: contain;
    margin-bottom: 18px;
  }
  .footer-about p {
    font-size: 14.5px; line-height: 1.75;
    color: rgba(255,255,255,1); margin-bottom: 0;
  }

  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--white);
    margin-bottom: 20px; position: relative; padding-bottom: 12px;
  }
  .footer-col h4::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 34px; height: 2px;
    background: var(--accent);
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 14.5px; color: rgba(255,255,255,1);
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
  }
  .footer-links a::before { content: '›'; color: var(--accent); font-size: 16px; }
  .footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

  /* Map in footer — no address text, just map */
  .footer-map {
    border-radius: var(--radius);
    overflow: hidden;
  }
  .footer-map iframe {
    width: 100%; height: 305px;
    border: none; display: block;
  }

  .copyright {
    padding: 22px 0;
    text-align: center;
    font-size: 13.5px;
    color: rgba(255,255,255,1);
  }
  .copyright span { color: var(--accent-light); }

  /* ════════════════════════════════
     SCROLL ANIMATIONS
  ════════════════════════════════ */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: 0.12s; }
  .fade-in-delay-2 { transition-delay: 0.24s; }

  /* ════════════════════════════════
     RESPONSIVE
  ════════════════════════════════ */

  /* ── Tablet: 1024px ── */
  @media (max-width: 1024px) {
    .services-grid      { grid-template-columns: repeat(2, 1fr); }
    .team-grid          { grid-template-columns: repeat(2, 1fr); }
    .why-grid           { grid-template-columns: repeat(2, 1fr); }
    .footer-inner       { grid-template-columns: 1fr 1fr; }
    .footer-about       { grid-column: 1 / -1; }
    nav                 { gap: 16px; }
    .header-cta         { gap: 8px; }
    .header-consult span { display: none; }
    .header-phone       { font-size: 17px; }
    /* About grid tighter on tablet */
    .about-inner        { gap: 40px; }
    /* Hero form smaller padding */
    .hero-form-card     { padding: 30px 24px; }
  }

  /* ── Mobile: 768px ── */
  @media (max-width: 768px) {
    /* ─ Header / Nav ─ */
    nav {
      display: none;
      position: absolute;
      top: 72px; left: 0; right: 0;
      background: var(--white);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 24px;
      gap: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      border-top: 1px solid var(--border);
      z-index: 999;
    }
    nav.open            { display: flex; }
    nav a               { font-size: 16px; width: 100%; padding: 4px 0; }
    .hamburger          { display: flex; }
    .header-inner       { position: relative; }
    .header-consult     { display: none; }
    .header-phone       { font-size: 14px; }
    .header-phone svg   { width: 13px; height: 13px; }

    /* ─ Phone Bar ─ */
    .phone-bar-inner    { flex-direction: column; gap: 8px; text-align: center; }
    .phone-bar span     { font-size: 13px; }

    /* ─ Section padding ─ */
    #hero               { padding: 90px 0 60px; }
    #about, #services, #why, #team, #testimonials, #faq, #contact { padding: 60px 0; }

    /* ─ Hero ─ */
    .hero-inner         { grid-template-columns: 1fr; gap: 40px; }
    .hero-title         { font-size: 1.85rem; }
    .hero-sub           { font-size: 16px; }
    .hero-form-card     { padding: 28px 22px; }
    .hero-actions       { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-bullets li    { font-size: 15px; }
    .hero-stats         { gap: 20px; }
    .hero-stat-num      { font-size: 1.7rem; }

    /* ─ About ─ */
    .about-inner        { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap img { height: 300px; }
    .about-badge        { left: 8px; bottom: 16px; }

    /* ─ Services ─ */
    .services-grid      { grid-template-columns: 1fr; }
    .services-cta       { flex-direction: column; text-align: center; align-items: center; gap: 16px; padding: 24px 20px; }
    .services-cta-phone { justify-content: center; font-size: 20px; }

    /* ─ Why ─ */
    .why-grid           { grid-template-columns: 1fr; }
    .why-phone-banner   { flex-direction: column; text-align: center; gap: 12px; padding: 22px 20px; }

    /* ─ Team ─ */
    .team-grid          { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* ─ Testimonials ─ */
    .testimonial-slide  { min-width: 100%; }
    .testimonial-card   { padding: 26px 20px; }
    .testimonial-text   { font-size: 15px; }

    /* ─ FAQ ─ */
    .faq-inner          { grid-template-columns: 1fr; gap: 32px; }
    .faq-side-card      { flex: unset; padding: 30px 24px; }

    /* ─ Contact ─ */
    .contact-inner      { grid-template-columns: 1fr; gap: 36px; }
    .contact-form-card  { padding: 28px 22px; }
    .form-row           { grid-template-columns: 1fr; }

    /* ─ Footer ─ */
    .footer-inner       { grid-template-columns: 1fr; gap: 32px; }

    /* ─ Phone numbers ─ */
    .service-phone-link,
    .about-phone-text a,
    .faq-side-phone     { font-size: 19px; }
  }

  /* ── Small Mobile: 480px ── */
  @media (max-width: 480px) {
    .container          { padding: 0 16px; }

    /* Hero */
    .hero-title         { font-size: 1.6rem; }
    .hero-stats         { gap: 14px; }
    .hero-stat-num      { font-size: 1.5rem; }
    .hero-stat-label    { font-size: 11px; }
    .hero-form-card     { padding: 22px 18px; }
    .hero-badge         { font-size: 11px; }

    /* Team — single column on small mobile */
    .team-grid          { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

    /* Services CTA */
    .services-cta       { padding: 20px 16px; }
    .services-cta-phone { font-size: 18px; }

    /* Why banner */
    .why-phone-banner   { padding: 18px 16px; }

    /* Testimonials */
    .testimonial-slide  { padding: 0 4px; }

    /* Slider arrows smaller */
    .slider-arrow       { width: 36px; height: 36px; font-size: 16px; }

    /* FAQ */
    .faq-question       { font-size: 14px; padding: 15px 16px; }

    /* Contact form */
    .contact-form-card  { padding: 22px 16px; }

    /* Buttons */
    .btn                { padding: 13px 22px; font-size: 14px; }

    /* Footer */
    .footer-col h4      { font-size: 1rem; }
    .footer-about p     { font-size: 14px; }

    /* Phone numbers */
    .header-phone,
    .phone-bar a,
    .service-phone-link,
    .services-cta-phone,
    .faq-side-phone,
    .testimonials-phone a,
    .about-phone-text a,
    .contact-detail-text a { font-size: 17px; }
  }

  /* ── Tiny Mobile: 380px ── */
  @media (max-width: 380px) {
    .hero-title         { font-size: 1.4rem; }
    .hero-form-card,
    .contact-form-card  { padding: 20px 14px; }
    .btn                { padding: 12px 18px; font-size: 13px; }
    .section-title      { font-size: 1.45rem; }
    /*.header-inner       { height: 64px; }*/
    nav                 { top: 64px; }
    .team-grid          { max-width: 300px; }
    .about-img-wrap img { height: 260px; }
    .why-card           { padding: 28px 20px; }
    .service-card       { padding: 26px 20px; }
  }
