/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,accessibility-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.5.0.1781175690
Updated: 2026-06-11 11:01:30

*/
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C9A96E;
    --gold-light: #e0c99a;
    --beige: #F5F0E8;
    --beige-mid: #EDE5D8;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
	  zoom:1.1;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
	 
	  margin-top:60px;
  }
	.nav-logo img {  max-width:120px !important;}

  .logo-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--beige);
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    line-height: 1;
  }

  .logo-circle span:first-child {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
  }

  .logo-circle span:last-child {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

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

  .nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

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

  .btn-nav {
    background: var(--text-dark);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px !important;
    display: flex; align-items: center; gap: 6px;
    transition: background 0.2s !important;
  }

  .btn-nav:hover { background: var(--gold) !important; color: var(--white) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
  }

  /* ── HERO ── */
#home {
  margin-top: 40px;
  min-height: calc(80vh - 70px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
	@media (min-width:1000px) {
	.nav-logo {margin-left:25px;}
	}
@media (max-width: 768px) {
	.nav-logo img {max-width:60px !important;}
	  .nav-logo {
    
	 
	  margin-top:1px;
		  
	}
  .hero-bg {
    object-position: center center;
  }
}

  .hero-left {
    background: var(--beige);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
  }

  .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .hero-divider {
    width: 50px; height: 2px;
    background: var(--gold);
    margin: 20px 0;
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 400px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 1.5px solid var(--gold);
    transition: all 0.2s;
    cursor: pointer;
  }

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

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    border: 1.5px solid rgba(0,0,0,0.2);
    transition: all 0.2s;
    cursor: pointer;
  }

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

  .hero-right {
    position: relative;
    background: #2a2218;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, transparent 60%);
    z-index: 1;
  }

  .hero-building-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.75;
  }

  .hero-badge {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 2;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(201,169,110,0.5);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
  }

  .hero-badge span:first-child {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
  }

  .hero-badge span:last-child {
    font-size: 9px;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .hero-logo-overlay {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
  }

  .hero-logo-overlay em {
    font-style: normal;
    color: var(--gold-light);
  }

  /* ── SERVICES BAR ── */
  #services-bar {
    background: var(--white);
    border-bottom: 1px solid var(--beige-mid);
    padding: 0;
  }

  .services-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .service-bar-item {
    padding: 32px 28px;
    border-right: 1px solid var(--beige-mid);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.2s;
  }

  .service-bar-item:last-child { border-right: none; }
  .service-bar-item:hover { background: var(--beige); }

  .service-bar-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
  }

  .service-bar-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .service-bar-text h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .service-bar-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* ── ABOUT ── */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .about-image {
    background: var(--beige-mid);
    position: relative;
    overflow: hidden;
    min-height: 480px;
  }

  .about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

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

  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
  }

  .section-body {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .about-feature {
    text-align: center;
  }

  .about-feature-icon {
    width: 36px; height: 36px;
    margin: 0 auto 10px;
    color: var(--gold);
  }

  .about-feature-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .about-feature p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
    text-align: center;
  }

  /* ── SPECIALISTS ── */
  #specialists {
    background: var(--beige);
    padding: 80px 40px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
  }

  .section-header .gold-line {
    width: 40px; height: 1.5px;
    background: var(--gold);
    margin: 16px auto 0;
  }

  .specialists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .specialist-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  }

  .specialist-photo {
    background: var(--beige-mid);
    overflow: hidden;
  }

  .specialist-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .specialist-info {
    padding: 28px 24px;
  }

  .specialist-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .specialist-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .specialist-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .specialist-list {
    list-style: none;
    margin-bottom: 20px;
  }

  .specialist-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .specialist-list li::before {
    content: '✓';
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ── SCOPE ── */
  #scope {
    padding: 80px 40px;
    background: var(--white);
  }

  .scope-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .scope-item {
    text-align: center;
  }

  .scope-icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  .scope-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .scope-item p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.4;
  }

  /* ── BANNER ── */
  #banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
  }

  .banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
  }

  .banner-image {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 600px;
  }

  .banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .banner-content p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
  }

  /* ── REVIEWS ── */
  #reviews {
    padding: 80px 40px;
    background: var(--white);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .review-card {
    padding: 32px;
    background: var(--beige);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
  }

  .review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .review-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .review-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mid);
    letter-spacing: 0.5px;
  }

  /* ── BLOG ── */
  #blog {
    padding: 80px 40px;
    background: var(--beige);
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }

  .blog-thumb {
    height: 180px;
    background: var(--beige-mid);
    overflow: hidden;
    position: relative;
  }

  .blog-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--beige-mid) 0%, var(--beige) 100%);
  }

  .blog-thumb-placeholder svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1; opacity: 0.6; }

  .blog-body {
    padding: 24px;
  }

  .blog-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .blog-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .blog-excerpt {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .blog-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
  }

  .blog-link:hover { text-decoration: underline; }

  /* ── CONTACT ── */
  #contact {
    padding: 80px 40px;
    background: var(--white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .contact-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact-item-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }

  .contact-item-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .contact-item-text p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.5;
  }

  .contact-item-text span {
    font-size: 13px;
    color: var(--text-light);
  }

  .contact-map {
    border-radius: 6px;
    overflow: hidden;
    height: 360px;
    background: var(--beige-mid);
    border: 1px solid var(--beige-mid);
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--beige);
    border-top: 1px solid var(--beige-mid);
    padding: 50px 80px 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-social a {
    width: 34px; height: 34px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
  }

  .footer-social a:hover {
    background: var(--gold);
    color: var(--white);
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
  }

  .footer-col a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
  }

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

  .footer-bottom {
    border-top: 1px solid var(--beige-mid);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ── MOBILE NAV MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--beige-mid);
    padding: 20px 30px 30px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-size: 16px;
    color: var(--text-mid);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige-mid);
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--gold); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 0 24px; }
    .nav-links { gap: 20px; }
    .scope-grid { grid-template-columns: repeat(4, 1fr); }

    .hero-left { padding: 60px 40px; }
    .about-content { padding: 60px 40px; }
    .banner-content { padding: 50px 40px; }
    footer { padding: 50px 40px 30px; }
    .footer-grid { gap: 40px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    #home { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 30px; }
    .hero-right { min-height: 300px; }

    .services-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .service-bar-item { border-right: none; border-bottom: 1px solid var(--beige-mid); }
    .service-bar-item:nth-child(2n) { border-left: 1px solid var(--beige-mid); }
    .service-bar-item:nth-last-child(-n+2) { border-bottom: none; }

    #about { grid-template-columns: 1fr; }
    .about-image { min-height: 300px; }
    .about-content { padding: 50px 30px; }
    .about-features { grid-template-columns: repeat(2, 1fr); }

    .specialists-grid { grid-template-columns: 1fr; }
    .specialist-card { grid-template-columns: 140px 1fr; }

    .scope-grid { grid-template-columns: repeat(4, 1fr); }

    .banner-content { padding: 50px 30px; }

    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    footer { padding: 40px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  }

  @media (max-width: 480px) {
    .services-bar-grid { grid-template-columns: 1fr; }
    .service-bar-item { border-right: none; border-left: none !important; }
    .specialist-card { grid-template-columns: 1fr; }
    .specialist-photo { height: 220px; }
    .scope-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
  }
</style>
	 <?php wp_head(); ?>
	 
	<meta name="google-site-verification" content="FGsi79BculziqpyerZhM_WRRDYrE-mTUBnNdHfQu_Kg" />
	
	<style>
		
		body, nav {margin:auto; max-width:1600px;}
		
 /* HERO FIX */
#home {
  display: flex !important;
  grid-template-columns: unset !important;
}

.hero-left {
  background: transparent !important;
  width: 50% !important;
}
		.dwa {display:none;}
		
@media (max-width: 768px) {
	
  
  #banner {
    min-height: 320px;
  }
  #banner img {
    object-position: 90% 80% !important;
  }
 
	
	
	
	
	
	
	
	
	
	
	
	.dwa {display:block; max-width:100%; margin-top:70px; }
	#home {margin-top:0;}
  .hero-left {
    width: 100% !important;
    background: rgba(245,240,232,0.85) !important;
    backdrop-filter: blur(4px);
  }
}
  