  :root {
    --cream: #f5f0e8;
    --warm-beige: #e8ddc8;
    --sand: #d4c4a8;
    --brown: #8b6e4e;
    --dark-brown: #5c4230;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-bright: #d4a843;
    --text: #3a2e22;
    --text-light: #7a6455;
    --white: #fefcf8;
    --deep: #2a1f14;
    --accent: #9b4dca;
    --accent-soft: rgba(155,77,202,0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ========== SCROLL PROGRESS ========== */
  #scrollProgress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--gold), var(--gold-bright));
    z-index: 1000;
    transition: width 0.1s;
  }

  /* ========== NAV ========== */
  nav {
    position: fixed;
    top: 3px; left: 0; right: 0;
    z-index: 100;
    background: rgba(245,240,232,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sand);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
  }

  .logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-beige), var(--sand));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
  }

  .fav {
    width: 46px;
    height: 46px;
    object-fit: cover;
  }

  .logo-circle-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    font-style: italic;
  }

  .logo-text-block { line-height: 1.1; }

  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-brown);
    letter-spacing: 0.04em;
    display: block;
  }

  .logo-role {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s;
    font-weight: 400;
  }

  .nav-links a:hover { color: var(--brown); }

  .nav-cta {
    background: var(--brown) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.3rem;
    border-radius: 30px;
    font-size: 0.72rem !important;
  }
  .nav-cta:hover { background: var(--dark-brown) !important; color: var(--white) !important; }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .burger span {
    width: 24px; height: 2px;
    background: var(--brown);
    display: block;
    transition: 0.3s;
  }

  /* ========== HERO ========== */
  #home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 71px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 65% 75% at 85% 35%, rgba(201,169,110,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 15% 75%, rgba(155,77,202,0.05) 0%, transparent 50%),
      var(--cream);
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(139,110,78,0.06) 1px, transparent 0);
    background-size: 32px 32px;
  }

  .hero-deco-line {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 42%;
    background: linear-gradient(160deg, rgba(201,169,110,0.08) 0%, rgba(232,221,200,0.25) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-pretag {
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .hero-pretag::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--gold);
    display: block;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--dark-brown);
    margin-bottom: 1rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--brown);
  }
  .hero-title .highlight {
    display: block;
    font-style: italic;
    color: var(--brown);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
  }

  .hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }

  .role-tag {
    background: var(--white);
    border: 1px solid var(--sand);
    color: var(--brown);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .role-tag .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--brown);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--brown);
    font-weight: 500;
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--brown);
  }

  .btn-outline {
    background: transparent;
    color: var(--brown);
    padding: 0.9rem 2.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--sand);
    font-weight: 500;
  }
  .btn-outline:hover { border-color: var(--brown); }

  /* HERO RIGHT CARD */
  .hero-right {
    display: flex;
    justify-content: center;
  }

  .profile-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    box-shadow: 0 30px 80px rgba(92,66,48,0.13);
    border: 1px solid var(--warm-beige);
    max-width: 340px;
    width: 100%;
    position: relative;
  }

  .profile-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.3rem 1.3rem;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 500;
  }

  .profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-beige), var(--sand));
    border: 3px solid var(--gold);
    margin: 0.5rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--brown);
    font-style: italic;
    overflow: hidden;
  }

  .fav5 {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .profile-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .profile-divider {
    width: 50px; height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
  }

  .profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pstat {
    text-align: center;
    background: var(--cream);
    padding: 1rem 0.7rem;
    border-radius: 14px;
  }
  .pstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1;
    display: block;
  }
  .pstat-label {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
    line-height: 1.3;
  }

  .profile-achievements {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .achievement {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    background: var(--cream);
    transition: background 0.2s;
  }
  .achievement:hover { background: var(--warm-beige); }
  .achievement-icon {
    width: 24px; height: 24px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  /* ========== SECTIONS COMMON ========== */
  section { padding: 6rem 2rem; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--dark-brown);
    line-height: 1.2;
  }

  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .section-divider::before, .section-divider::after {
    content: '';
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }
  .section-divider::after {
    background: linear-gradient(to left, transparent, var(--gold));
  }
  .section-divider-icon { color: var(--gold); font-size: 1.2rem; }

  .section-desc {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ========== ABOUT ========== */
  #about { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about-visual { position: relative; }

  .about-img-frame {
    background: url(/image.png);
    background-size: cover;
    border-radius: 28px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
.about {
    background-image: url(/image\ copy.png);
}
  .about-img-bg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem;
    color: rgba(139,110,78,0.13);
    position: absolute;
    font-style: italic;
  }
  .about-img-label {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--brown);
  }
  .about-img-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    display: block;
    opacity: 0.6;
    letter-spacing: 0.1em;
  }

  .about-quote-card {
    position: absolute;
    bottom: 2rem;
    left: -2.5rem;
    right: 2rem;
    background: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(92,66,48,0.16);
    border-left: 4px solid var(--gold);
  }
  .about-quote-card p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--brown);
    line-height: 1.65;
  }
  .about-quote-card cite {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    font-style: normal;
  }

  .about-content .section-label { text-align: left; }

  .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.95;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-value {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 14px;
    transition: transform 0.2s;
  }
  .about-value:hover { transform: translateY(-2px); }

  .value-icon {
    width: 38px; height: 38px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .value-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
  .value-text strong {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-size: 0.87rem;
  }

  /* ========== DARK BANNER ========== */
  .dark-banner {
    background: linear-gradient(135deg, var(--deep) 0%, var(--dark-brown) 60%, var(--brown) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .dark-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 30px 30px;
  }
  .dark-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,169,110,0.08) 0%, transparent 70%);
  }
  .dark-banner .section-label { color: var(--gold-light); }
  .dark-banner .section-title { color: var(--white); }
  .dark-banner .section-desc { color: rgba(255,255,255,0.65); }

  .banner-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
  }

  .bstat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
  }
  .bstat:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
  }

  .bstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
  }
  .bstat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  /* ========== SERVICES ========== */
  #services { background: var(--cream); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border-radius: 22px;
    padding: 2.2rem 2rem;
    border: 1px solid var(--warm-beige);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-bright));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover {
    box-shadow: 0 20px 60px rgba(92,66,48,0.12);
    transform: translateY(-5px);
    border-color: var(--sand);
  }
  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 56px; height: 56px;
    background: var(--gold-light);
    border-radius: 16px;
    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.5rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
  }

  .service-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .service-features li {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .service-features li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
  }

  /* ========== METHOD ========== */
  #method {
    background: var(--white);
  }

  .method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .method-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: all 0.3s;
  }
  .method-step:hover {
    background: var(--cream);
    border-color: var(--warm-beige);
  }

  .step-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--sand));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brown);
    flex-shrink: 0;
  }

  .step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.4rem;
    font-weight: 400;
  }
  .step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
  }

  .method-visual {
    position: relative;
  }

  .method-big-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    font-style: italic;
    color: var(--dark-brown);
    line-height: 1;
    opacity: 0.08;
    position: absolute;
    top: -2rem;
    right: -1rem;
    pointer-events: none;
  }

  .method-quote-block {
    background: linear-gradient(135deg, var(--warm-beige), var(--cream));
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--sand);
    position: relative;
    overflow: hidden;
  }
  .method-quote-block::before {
    content: '❝';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
  }

  .method-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dark-brown);
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .method-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .method-author-photo {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: url(image.png);
    background-size: cover;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--brown);
    font-weight: 600;
  }
  .method-author-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-brown);
    font-weight: 500;
  }
  .method-author-info span {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
  }
  .method-tag {
    background: var(--white);
    border: 1px solid var(--sand);
    color: var(--brown);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
  }

  /* ========== WHO FOR ========== */
  .who-section {
    background: var(--cream);
  }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .who-card {
    background: var(--white);
    border-radius: 22px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--warm-beige);
    text-align: center;
    transition: all 0.3s;
  }
  .who-card:hover {
    box-shadow: 0 20px 60px rgba(92,66,48,0.1);
    transform: translateY(-4px);
  }

  .who-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }

  .who-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.7rem;
    font-weight: 400;
  }

  .who-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ========== TESTIMONIALS ========== */
  #results {
    background: var(--white);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testimonial {
    background: var(--cream);
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid var(--warm-beige);
    position: relative;
    transition: all 0.3s;
  }
  .testimonial:hover {
    box-shadow: 0 20px 50px rgba(92,66,48,0.1);
    transform: translateY(-3px);
  }
  .testimonial::before {
    content: '❝';
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    font-family: serif;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-beige), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    border: 1px solid var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
  }
  .testimonial-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
  }
  .testimonial-role {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.1em;
  }

  /* ========== CTA BANNER ========== */
  .cta-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 28px 28px;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .cta-title em {
    font-style: italic;
    color: var(--gold);
  }

  .cta-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2.5rem;
  }

  .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--deep);
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    font-weight: 600;
  }
  .btn-gold:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
  }

  .btn-white-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4);
    font-weight: 500;
  }
  .btn-white-outline:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
  }

  /* ========== CONTACT ========== */
  #contact { background: var(--cream); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-left .section-label { text-align: left; }

  .contact-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--warm-beige);
  }
  .contact-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(92,66,48,0.1);
    transform: translateX(4px);
  }

  .contact-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-item-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
  }
  .contact-item-info span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 300;
  }

  .contact-right {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--warm-beige);
    box-shadow: 0 20px 60px rgba(92,66,48,0.08);
  }

  .contact-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
  }
  .contact-right p {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--sand);
    border-radius: 12px;
    background: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
    background: var(--white);
  }

  .form-submit {
    width: 100%;
    background: var(--brown);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
  }
  .form-submit:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--deep);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 3rem 2rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo-circle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    background-image: url(/image.png);
    background-size: cover;
  }

  .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.06em;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }

  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-social {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
  }
  .footer-social:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
  }

  .footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em;
  }

  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    z-index: 50;
    transition: all 0.3s;
    letter-spacing: 0.05em;
  }
  .wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.45);
  }
  .wa-float svg {
    width: 20px; height: 20px;
    fill: white;
    flex-shrink: 0;
  }

  /* ========== FADE IN ========== */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }




/* ========== MOBILE FIXES ========== */
@media (max-width: 900px) {

  html,
  body {
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  nav {
    height: 64px;
    padding: 0 1rem;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-role {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .logo-circle,
  .fav {
    width: 40px;
    height: 40px;
  }

  /* ===== MOBILE MENU ===== */

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    position: relative;
    z-index: 120;
  }

  .burger span {
    width: 22px;
    height: 2px;
    background: var(--brown);
    border-radius: 10px;
    transition: 0.3s;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;

    width: 82%;
    max-width: 320px;
    height: calc(100vh - 64px);

    background: rgba(254,252,248,0.98);
    backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 1.4rem;
    gap: 1rem;

    overflow-y: auto;

    border-left: 1px solid var(--warm-beige);
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);

    transition: right 0.35s ease;

    z-index: 110;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    width: 100%;
    display: flex;
    align-items: center;

    padding: 0.9rem 0;

    border-bottom: 1px solid rgba(212,196,168,0.25);

    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.9rem 1rem !important;
  }

  #home {
    padding-top: 64px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem 4rem;
    gap: 2rem;
    text-align: center;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }

  .hero-pretag {
    justify-content: center;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
  }

  .hero-pretag::before {
    width: 24px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 4rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
  }

  .hero-roles {
    justify-content: center;
    margin-bottom: 1.8rem;
  }

  .role-tag {
    font-size: 0.62rem;
    padding: 0.42rem 0.8rem;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
  }

  .btn-primary,
  .btn-outline,
  .btn-gold,
  .btn-white-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.95rem 1.2rem;
    font-size: 0.72rem;
  }

  .profile-card {
    max-width: 100%;
    padding: 2rem 1.3rem;
    border-radius: 22px;
  }

  .profile-badge {
    font-size: 0.55rem;
    padding: 0.3rem 1rem;
    letter-spacing: 0.16em;
  }

  .profile-photo,
  .fav5 {
    width: 88px;
    height: 88px;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profile-stats {
    gap: 0.8rem;
  }

  .pstat {
    padding: 0.9rem 0.5rem;
  }

  .pstat-num {
    font-size: 1.6rem;
  }

  section {
    padding: 4rem 1rem;
  }

  .gjgj {
    padding: 5rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .section-desc {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .about-grid,
  .method-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-quote-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -2rem;
    padding: 1.2rem;
  }

  .about-quote-card p {
    font-size: 0.95rem;
  }

  .banner-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-top: 2rem;
  }

  .bstat {
    padding: 1.4rem 1rem;
    border-radius: 16px;
  }

  .bstat-num {
    font-size: 2rem;
  }

  .bstat-label {
    font-size: 0.68rem;
  }

  .services-grid,
  .who-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .who-card,
  .testimonial {
    padding: 1.6rem 1.4rem;
    border-radius: 18px;
  }

  .service-title,
  .who-title {
    font-size: 1.25rem;
  }

  .service-desc,
  .who-desc,
  .testimonial-text {
    font-size: 0.88rem;
  }

  .method-step {
    gap: 1rem;
    padding: 1rem;
  }

  .step-circle {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .step-content h4 {
    font-size: 1.1rem;
  }

  .method-quote-block {
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .method-quote {
    font-size: 1.2rem;
  }

  .method-big-text {
    display: none;
  }

  .contact-right {
    padding: 1.6rem;
    border-radius: 18px;
  }

  .contact-right h3 {
    font-size: 1.5rem;
  }

  .contact-item {
    padding: 0.9rem 1rem;
  }

  .contact-item-info strong {
    font-size: 0.8rem;
  }

  .contact-item-info span {
    font-size: 0.72rem;
  }

  footer {
    padding: 2.5rem 1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.65rem;
  }

  .wa-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .wa-float span {
    display: none;
  }
}


/* ========== EXTRA SMALL DEVICES ========== */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .profile-card {
    padding: 1.6rem 1rem;
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .banner-stats {
    grid-template-columns: 1fr;
  }

  .section-divider::before,
  .section-divider::after {
    width: 36px;
  }

  .method-tags {
    gap: 0.5rem;
  }

  .method-tag {
    font-size: 0.62rem;
    padding: 0.35rem 0.7rem;
  }

  .cta-btns {
    flex-direction: column;
  }

  .footer-socials {
    gap: 0.7rem;
  }

  .footer-social {
    width: 34px;
    height: 34px;
  }
}















/* ===== CONTACT SECTION ===== */

.contact-section{
    background:var(--white);
    position:relative;
    overflow:hidden;
}

.contact-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:2rem;
    align-items:stretch;
    margin-top:3rem;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.contact-card{
    display:flex;
    align-items:center;
    gap:1rem;

    background:var(--cream);
    border:1px solid var(--warm-beige);

    padding:1.2rem;
    border-radius:22px;

    text-decoration:none;
    transition:0.3s ease;

    min-height:92px;
}

.contact-card:hover{
    transform:translateY(-4px);
    border-color:var(--gold);
    box-shadow:0 16px 40px rgba(92,66,48,0.08);
}

.contact-card-icon{
    width:58px;
    height:58px;
    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--gold-light),
        var(--warm-beige)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.4rem;
    flex-shrink:0;
}

.contact-card-content{
    display:flex;
    flex-direction:column;
    gap:0.25rem;
}

.contact-card-content span{
    font-size:0.72rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--gold);
}

.contact-card-content strong{
    font-size:1rem;
    color:var(--dark-brown);
    font-weight:500;
    line-height:1.4;
}

.contact-map{
    border-radius:30px;
    overflow:hidden;
    min-height:100%;
    border:1px solid var(--warm-beige);
    box-shadow:0 20px 60px rgba(92,66,48,0.08);
    background:var(--cream);
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:580px;
    border:0;
    display:block;
}

/* ===== TABLET ===== */

@media(max-width:1000px){

    .contact-layout{
        grid-template-columns:1fr;
    }

    .contact-map iframe{
        min-height:420px;
    }
}

/* ===== MOBILE ===== */

@media(max-width:700px){

    .contact-layout{
        gap:1.2rem;
        margin-top:2rem;
    }

    .contact-card{
        padding:1rem;
        border-radius:18px;
        min-height:auto;
    }

    .contact-card-icon{
        width:50px;
        height:50px;
        border-radius:15px;
        font-size:1.15rem;
    }

    .contact-card-content strong{
        font-size:0.88rem;
    }

    .contact-card-content span{
        font-size:0.62rem;
    }

    .contact-map{
        border-radius:22px;
    }

    .contact-map iframe{
        min-height:320px;
    }
}