:root{
  --black:#070707;
  --charcoal:#151515;
  --red:#7b1017;
  --red-2:#a4161f;
  --gold:#c99b38;
  --gold-2:#f1cf82;
  --white:#ffffff;
  --soft:#f8f6f2;
  --muted:#706b64;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--black);
  background:var(--white);
  overflow-x:hidden;
}
.cursor-glow{
  position:fixed;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(201,155,56,.18), transparent 65%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:1;
}
.hero-section{
  min-height:100vh;
  background:
    linear-gradient(135deg, rgba(123,16,23,.92), rgba(10,10,10,.84)),
    url("assets/paul-expert-logo.png");
  background-size:cover;
  background-position:center;
  position:relative;
  color:var(--white);
  overflow:hidden;
}
.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(241,207,130,.22), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.25), transparent);
}
.hero-section::after{
  content:"";
  position:absolute;
  width:650px;
  height:650px;
  border:1px solid rgba(201,155,56,.35);
  border-radius:50%;
  right:-220px;
  top:120px;
  animation:spin 28s linear infinite;
}
.navbar{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 7%;
}
.brand img{
  width:230px;
  filter:drop-shadow(0 12px 20px rgba(0,0,0,.45));
}
.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
}
.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.5px;
  opacity:.88;
}
.nav-links a:hover{color:var(--gold-2)}
.nav-cta{
  color:#111;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  padding:13px 22px;
  border-radius:50px;
  text-decoration:none;
  font-weight:800;
}
.hero-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:60px;
  align-items:center;
  padding:85px 7% 110px;
}
.badge{
  display:inline-block;
  padding:10px 16px;
  border:1px solid rgba(241,207,130,.4);
  border-radius:50px;
  background:rgba(255,255,255,.08);
  color:var(--gold-2);
  font-weight:700;
}
h1{
  font-size:clamp(44px,7vw,92px);
  line-height:.94;
  margin:22px 0;
  letter-spacing:-2.5px;
}
.hero-copy p{
  max-width:800px;
  font-size:20px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:32px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:50px;
  font-weight:800;
  text-decoration:none;
}
.btn-primary{
  color:#111;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  box-shadow:0 15px 35px rgba(201,155,56,.22);
}
.btn-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:45px;
  max-width:650px;
}
.stats div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
}
.stats strong{
  display:block;
  font-size:25px;
  color:var(--gold-2);
}
.stats span{
  color:rgba(255,255,255,.75);
}
.hero-visual{
  min-height:560px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-orbit{
  position:relative;
  width:min(430px,80vw);
  height:min(430px,80vw);
  border-radius:50%;
  display:grid;
  place-items:center;
}
.logo-orbit::before{
  content:"";
  position:absolute;
  inset:-25px;
  border-radius:50%;
  border:1px dashed rgba(241,207,130,.45);
  animation:spin 18s linear infinite;
}
.logo-orbit span{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
}
.logo-orbit span:nth-child(1){inset:10px;animation:pulse 3s infinite}
.logo-orbit span:nth-child(2){inset:45px;animation:pulse 4s infinite}
.logo-orbit span:nth-child(3){inset:80px;animation:pulse 5s infinite}
.logo-orbit img{
  width:82%;
  filter:drop-shadow(0 30px 45px rgba(0,0,0,.5));
  animation:float 5s ease-in-out infinite;
}
.floating-card{
  position:absolute;
  padding:15px 18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  border-radius:18px;
  color:#fff;
  font-weight:800;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}
.top-card{top:55px;right:20px;animation:float 4.5s ease-in-out infinite}
.mid-card{left:15px;top:235px;animation:float 5.2s ease-in-out infinite}
.bottom-card{right:40px;bottom:70px;animation:float 5.8s ease-in-out infinite}
.section{
  padding:90px 7%;
}
.section-title{
  max-width:900px;
  margin-bottom:38px;
}
.section-title span{
  color:var(--red);
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}
.section-title h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1.05;
  margin:12px 0 0;
}
.about{
  background:linear-gradient(180deg,#fff,#fbf8f3);
}
.about-grid,.service-grid,.area-grid,.contact-grid{
  display:grid;
  gap:24px;
}
.about-grid{grid-template-columns:repeat(3,1fr)}
.about-card,.service-card,.area,.contact-card{
  background:#fff;
  border:1px solid #ece7de;
  border-radius:26px;
  padding:30px;
  box-shadow:0 18px 45px rgba(40,20,10,.06);
  transition:.35s ease;
}
.about-card:hover,.service-card:hover,.area:hover,.contact-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 55px rgba(80,20,20,.13);
}
.about-card h3,.service-card h3,.area h3,.contact-card h3{
  color:var(--red);
  margin-top:0;
}
.about-card p,.service-card p,.area p,.contact-card p{
  color:var(--muted);
  line-height:1.75;
}
.services{
  background:var(--black);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.services::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(164,22,31,.35), transparent 70%);
  left:-120px;
  top:80px;
}
.services .section-title span{color:var(--gold-2)}
.services .service-card{
  background:linear-gradient(180deg,#191919,#111);
  border-color:rgba(201,155,56,.25);
}
.service-grid{grid-template-columns:repeat(3,1fr)}
.icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--red),var(--black));
  border:1px solid rgba(241,207,130,.35);
  border-radius:18px;
  font-size:28px;
  margin-bottom:16px;
}
.process{
  background:#fff;
}
.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.step{
  padding:28px;
  border-radius:26px;
  background:linear-gradient(180deg,#fff,#fbf7ef);
  border:1px solid #ede2d0;
}
.step b{
  display:inline-flex;
  color:var(--gold);
  font-size:30px;
  margin-bottom:15px;
}
.step h3{color:var(--red)}
.step p{color:var(--muted);line-height:1.7}
.project-areas{
  background:#fbf8f3;
}
.area-grid{grid-template-columns:repeat(4,1fr)}
.parent{
  background:linear-gradient(135deg,var(--red),var(--black));
  color:#fff;
}
.parent-panel{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:45px;
  align-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:34px;
  padding:45px;
}
.parent-panel img{
  width:100%;
  background:#fff;
  border-radius:20px;
  padding:18px;
}
.parent-panel span{color:var(--gold-2);font-weight:900;text-transform:uppercase}
.parent-panel h2{font-size:44px;margin:10px 0}
.parent-panel p{line-height:1.8;color:rgba(255,255,255,.84)}
.contact{
  background:#fff;
}
.contact-grid{
  grid-template-columns:repeat(4,1fr);
}
.contact-card a{
  color:var(--red);
  font-weight:800;
  text-decoration:none;
}
footer{
  background:#070707;
  color:#fff;
  text-align:center;
  padding:40px 7%;
}
footer img{
  width:180px;
  margin-bottom:12px;
}
.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.active{
  opacity:1;
  transform:translateY(0);
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}
@keyframes spin{
  to{transform:rotate(360deg)}
}
@keyframes pulse{
  0%,100%{opacity:.35;transform:scale(1)}
  50%{opacity:.8;transform:scale(1.04)}
}
@media(max-width:980px){
  .nav-links{display:none}
  .hero-grid,.about-grid,.service-grid,.timeline,.area-grid,.contact-grid,.parent-panel{
    grid-template-columns:1fr;
  }
  .stats{grid-template-columns:1fr}
  .hero-visual{min-height:420px}
  .navbar{align-items:flex-start}
}
@media(max-width:620px){
  .navbar{padding:20px 5%}
  .brand img{width:190px}
  .nav-cta{display:none}
  .hero-grid,.section{padding-left:5%;padding-right:5%}
  .parent-logo img{height:55px}
}

.brand img,.logo-orbit img{
mix-blend-mode:multiply;
}
.parent-panel img{
background:transparent !important;
padding:0 !important;
}


/* Final multi-page additions */
.page-banner{
  padding:90px 7%;
  background:linear-gradient(135deg,rgba(123,16,23,.95),rgba(0,0,0,.92));
  color:#fff;
}
.page-banner h1{
  margin:0 0 14px;
  font-size:clamp(42px,6vw,76px);
  line-height:1;
}
.page-banner p{
  max-width:780px;
  font-size:20px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}
.team-page-section{
  padding:90px 7%;
  background:linear-gradient(180deg,#fff,#fbf7ef);
}
.ceo-card{
  max-width:980px;
  margin:auto;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:36px;
  align-items:center;
  background:#fff;
  border:1px solid #eadfca;
  border-radius:34px;
  padding:38px;
  box-shadow:0 25px 70px rgba(70,25,15,.12);
}
.ceo-card img{
  width:100%;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}
.ceo-card .role{
  display:inline-block;
  color:#7b1017;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.ceo-card h2{
  margin:0 0 14px;
  font-size:42px;
  color:#070707;
}
.ceo-card p{
  color:#706b64;
  line-height:1.8;
  font-size:18px;
}
.ceo-card .tags{
  margin-top:16px;
  color:#c99b38;
  font-weight:900;
}
.page-content{
  padding:80px 7%;
}
.page-content h2{
  color:#7b1017;
  font-size:38px;
}
.page-content p{
  color:#706b64;
  font-size:18px;
  line-height:1.8;
}
@media(max-width:900px){
  .ceo-card{grid-template-columns:1fr}
}


/* FINAL CLARITY FIXES */
.navbar{
  background:linear-gradient(135deg,#ffffff,#fbf7ef) !important;
  border-bottom:1px solid #eadfca !important;
  box-shadow:0 10px 30px rgba(40,20,10,.08) !important;
}
.nav-links a{
  color:#050505 !important;
  text-shadow:none !important;
}
.nav-links a:hover{
  color:#7b1017 !important;
}
.brand img{
  width:260px !important;
  max-height:100px !important;
  object-fit:contain !important;
  background:transparent !important;
  mix-blend-mode:normal !important;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.16)) !important;
}
.logo-orbit img{
  mix-blend-mode:normal !important;
}
.page-banner{
  background:linear-gradient(135deg,#ffffff,#fbf7ef) !important;
  color:#050505 !important;
  border-bottom:1px solid #eadfca !important;
}
.page-banner h1{
  color:#050505 !important;
  text-shadow:none !important;
}
.page-banner p{
  color:#333333 !important;
}
.page-banner .badge{
  background:#fff !important;
  color:#7b1017 !important;
  border:1px solid #c99b38 !important;
}
.menu-btn{
  color:#050505 !important;
}
.hero-copy h1,
.hero-copy p{
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}
@media(max-width:980px){
  .nav-links{
    background:#ffffff !important;
  }
  .nav-links a{
    color:#050505 !important;
  }
}


/* Updated leadership team cards */
.team-heading{
  max-width:900px;
  margin:0 auto 40px;
  text-align:center;
}
.team-heading h2{
  font-size:clamp(34px,4vw,54px);
  margin:0 0 12px;
  color:#070707;
}
.team-heading p{
  color:#706b64;
  font-size:18px;
  line-height:1.8;
}
.leadership-row{
  max-width:1120px;
  margin:32px auto 0;
}
.single-row{
  display:grid;
  grid-template-columns:minmax(280px, 640px);
  justify-content:center;
}
.two-column{
  display:grid;
  grid-template-columns:repeat(2, minmax(260px, 1fr));
  gap:32px;
}
.team-member-card{
  background:#fff;
  border:1px solid #eadfca;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(70,25,15,.10);
  transition:.35s ease;
}
.team-member-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 75px rgba(80,20,20,.16);
}
.team-member-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.team-member-card .member-content{
  padding:26px;
}
.team-member-card h3{
  margin:8px 0 12px;
  font-size:26px;
  color:#070707;
}
.team-member-card p{
  color:#706b64;
  line-height:1.75;
  margin:0;
}
@media(max-width:900px){
  .two-column{
    grid-template-columns:1fr;
  }
  .team-member-card img{
    height:420px;
  }
}


/* Full face visibility for leadership cards */
.team-member-card img{
    height: 420px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background:#f8f8f8;
    padding:12px;
}

.ceo-card img{
    object-fit: contain !important;
    object-position:center center !important;
    background:#f8f8f8;
    padding:12px;
}


/* FINAL TEAM PAGE ORDER AND CARD FIX */
.team-page-section{
  padding:90px 7% !important;
  background:linear-gradient(180deg,#fff,#fbf7ef) !important;
}
.team-heading{
  max-width:900px !important;
  margin:0 auto 40px !important;
  text-align:center !important;
}
.team-heading h2{
  font-size:clamp(34px,4vw,54px) !important;
  margin:0 0 12px !important;
  color:#070707 !important;
}
.team-heading p{
  color:#706b64 !important;
  font-size:18px !important;
  line-height:1.8 !important;
}
.ceo-card{
  max-width:980px !important;
  margin:32px auto !important;
  display:grid !important;
  grid-template-columns:280px 1fr !important;
  gap:35px !important;
  align-items:center !important;
  background:#fff !important;
  border-radius:34px !important;
  padding:38px !important;
  border:1px solid #eadfca !important;
  box-shadow:0 25px 70px rgba(70,25,15,.09) !important;
}
.ceo-card img{
  width:100% !important;
  max-height:360px !important;
  object-fit:contain !important;
  object-position:center center !important;
  border-radius:24px !important;
  background:#f8f8f8 !important;
  padding:12px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.18) !important;
}
.ceo-card h2{
  font-size:42px !important;
  margin:8px 0 14px !important;
  color:#070707 !important;
}
.ceo-card p{
  color:#706b64 !important;
  line-height:1.8 !important;
  font-size:18px !important;
}
.ceo-card .role,.team-member-card .role{
  display:inline-block !important;
  color:#7b1017 !important;
  font-weight:900 !important;
  letter-spacing:2px !important;
  text-transform:uppercase !important;
}
.ceo-card .tags{
  margin-top:16px !important;
  color:#c99b38 !important;
  font-weight:900 !important;
}
.leadership-row.two-column{
  max-width:1120px !important;
  margin:34px auto 0 !important;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(260px,1fr)) !important;
  gap:32px !important;
}
.team-member-card{
  background:#fff !important;
  border:1px solid #eadfca !important;
  border-radius:30px !important;
  overflow:hidden !important;
  box-shadow:0 25px 70px rgba(70,25,15,.10) !important;
  transition:.35s ease !important;
}
.team-member-card img{
  width:100% !important;
  height:420px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f8f8f8 !important;
  padding:12px !important;
  display:block !important;
}
.team-member-card .member-content{
  padding:26px !important;
}
.team-member-card h3{
  margin:8px 0 12px !important;
  font-size:26px !important;
  color:#070707 !important;
}
.team-member-card p{
  color:#706b64 !important;
  line-height:1.75 !important;
  margin:0 !important;
}
@media(max-width:900px){
  .ceo-card,.leadership-row.two-column{
    grid-template-columns:1fr !important;
  }
}

.service-statement{
  text-align:center;
  font-size:30px;
  font-weight:900;
  color:#7b1017;
  margin:34px auto 10px;
  padding:0 7%;
  text-transform:uppercase;
  letter-spacing:.5px;
}


/* Projects gallery page */
.projects-page-section{
  padding:90px 7%;
  background:linear-gradient(180deg,#fff,#fbf7ef);
}
.project-gallery-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(260px,1fr));
  gap:28px;
}
.project-card{
  background:#fff;
  border:1px solid #eadfca;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(70,25,15,.10);
  transition:.35s ease;
}
.project-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 75px rgba(80,20,20,.16);
}
.project-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}
.project-card div{
  padding:24px;
}
.project-card h3{
  margin:0 0 10px;
  color:#7b1017;
  font-size:24px;
}
.project-card p{
  color:#706b64;
  line-height:1.7;
  margin:0;
}
@media(max-width:980px){
  .project-gallery-grid{
    grid-template-columns:1fr;
  }
}

/* Clubhouse project card text spacing */
.project-card p{
  margin:0 0 8px !important;
}
.project-card p strong{
  color:#070707;
}


/* Enlarged project showcase */
.project-card{
    max-width: 1400px !important;
    width: 100% !important;
}
.project-card img{
    width: 100% !important;
    height: auto !important;
    min-height: 600px !important;
    object-fit: contain !important;
    display:block;
}


/* Premium project showcase layout */
.project-banner{
  background:linear-gradient(135deg,#ffffff,#fbf7ef) !important;
  color:#070707 !important;
  border-bottom:1px solid #eadfca !important;
}
.project-banner h1{color:#070707 !important;}
.project-banner p{color:#333 !important;}
.premium-project-showcase{
  padding:90px 7%;
  background:linear-gradient(180deg,#fff,#fbf7ef);
}
.project-case-card{
  max-width:1400px;
  margin:0 auto 55px;
  background:#fff;
  border:1px solid #eadfca;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(70,25,15,.12);
}
.project-image-wrap{
  width:100%;
  background:#111;
  padding:18px;
}
.project-image-wrap img{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  display:block;
  border-radius:22px;
}
.project-case-content{
  padding:42px;
}
.project-kicker{
  color:#7b1017;
  font-weight:900;
  letter-spacing:2px;
}
.project-case-content h2{
  margin:12px 0 16px;
  font-size:clamp(32px,4vw,54px);
  color:#070707;
  line-height:1.05;
}
.project-lead{
  color:#706b64;
  font-size:18px;
  line-height:1.8;
  max-width:1100px;
}
.project-info-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(200px,1fr));
  gap:18px;
  margin-top:30px;
}
.project-info-grid div{
  background:linear-gradient(180deg,#fff,#fbf7ef);
  border:1px solid #eadfca;
  border-radius:20px;
  padding:20px;
}
.project-info-grid strong{
  display:block;
  color:#7b1017;
  margin-bottom:8px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}
.project-info-grid span{
  color:#333;
  line-height:1.6;
}
.premium-placeholders{
  max-width:1200px;
}
@media(max-width:980px){
  .project-info-grid{
    grid-template-columns:1fr;
  }
}


/* Compact project card template style */
.compact-project-header{
  padding-top:60px !important;
  padding-bottom:40px !important;
}
.project-template-section{
  padding:55px 4%;
  background:#061b31;
}
.project-template-card{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:52% 48%;
  background:#071f3a;
  border:1px solid rgba(242,210,132,.25);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.22);
}
.project-template-image{
  min-height:480px;
  background:#111;
}
.project-template-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.project-template-content{
  padding:34px 32px;
  color:#fff;
}
.project-template-content .project-type{
  display:block;
  color:#f2d284;
  font-weight:900;
  letter-spacing:3px;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.project-template-content h2{
  margin:0 0 16px;
  color:#fff;
  font-size:clamp(28px,3vw,42px);
  line-height:1.08;
  text-transform:uppercase;
}
.project-template-content h4{
  margin:0 0 22px;
  color:#f2d284;
  font-size:18px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.project-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:20px;
}
.project-mini-grid div{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:16px;
}
.project-mini-grid span,
.project-scope-box span{
  display:block;
  color:#f2d284;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:10px;
}
.project-mini-grid strong{
  color:#fff;
  line-height:1.5;
  font-size:14px;
}
.project-scope-box{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(242,210,132,.25);
  border-radius:18px;
  padding:20px;
}
.project-scope-box p{
  color:#fff;
  line-height:1.7;
  margin:0;
  font-size:16px;
}
@media(max-width:980px){
  .project-template-card{
    grid-template-columns:1fr;
  }
  .project-mini-grid{
    grid-template-columns:1fr;
  }
  .project-template-image{
    min-height:auto;
  }
  .project-template-image img{
    height:auto;
    object-fit:contain;
  }
}


/* Premium red / maroon / white / gold project card theme */
.project-template-section{
  background:linear-gradient(180deg,#ffffff 0%,#fbf7ef 100%) !important;
}
.project-template-card{
  background:linear-gradient(135deg,#ffffff 0%,#fffaf0 55%,#f7ead8 100%) !important;
  border:2px solid rgba(201,155,56,.55) !important;
  box-shadow:0 28px 80px rgba(123,16,23,.18) !important;
}
.project-template-card::before{
  content:"";
  position:absolute;
}
.project-template-image{
  background:#ffffff !important;
  border-right:5px solid #7b1017 !important;
}
.project-template-content{
  color:#070707 !important;
  background:
    radial-gradient(circle at 90% 15%,rgba(201,155,56,.18),transparent 28%),
    linear-gradient(135deg,#ffffff,#fbf7ef) !important;
}
.project-template-content .project-type{
  color:#7b1017 !important;
}
.project-template-content h2{
  color:#070707 !important;
}
.project-template-content h4{
  color:#c99b38 !important;
}
.project-mini-grid div{
  background:#ffffff !important;
  border:1px solid rgba(201,155,56,.45) !important;
  box-shadow:0 12px 28px rgba(123,16,23,.08) !important;
}
.project-mini-grid span,
.project-scope-box span{
  color:#7b1017 !important;
}
.project-mini-grid strong{
  color:#111111 !important;
}
.project-scope-box{
  background:linear-gradient(135deg,#ffffff,#fff7e8) !important;
  border:1px solid rgba(201,155,56,.55) !important;
  box-shadow:0 12px 28px rgba(123,16,23,.08) !important;
}
.project-scope-box p{
  color:#333333 !important;
}


/* Final premium project portfolio - logo colors */
.premium-projects-section{
  padding:70px 4%;
  background:linear-gradient(180deg,#ffffff 0%,#fbf7ef 100%) !important;
}
.premium-project-list{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  gap:34px;
}
.premium-project-card{
  display:grid;
  grid-template-columns:52% 48%;
  background:linear-gradient(135deg,#ffffff 0%,#fffaf0 56%,#f8ead7 100%);
  border:2px solid rgba(201,155,56,.55);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(123,16,23,.16);
  transition:.35s ease;
}
.premium-project-card:hover{
  transform:translateY(-7px);
  box-shadow:0 32px 90px rgba(123,16,23,.22);
}
.premium-project-image{
  background:#fff;
  border-right:5px solid #7b1017;
  min-height:430px;
  overflow:hidden;
}
.premium-project-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .55s ease;
}
.premium-project-card:hover .premium-project-image img{
  transform:scale(1.035);
}
.premium-project-details{
  padding:34px 32px;
  background:
    radial-gradient(circle at 92% 12%,rgba(201,155,56,.18),transparent 30%),
    linear-gradient(135deg,#ffffff,#fbf7ef);
}
.premium-project-details .project-type{
  display:block;
  color:#7b1017;
  font-weight:900;
  letter-spacing:3px;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.premium-project-details h2{
  margin:0 0 16px;
  color:#070707;
  font-size:clamp(25px,2.7vw,38px);
  line-height:1.08;
  text-transform:uppercase;
}
.premium-project-details h4{
  margin:0 0 22px;
  color:#c99b38;
  font-size:18px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.project-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:20px;
}
.project-mini-grid div{
  background:#fff;
  border:1px solid rgba(201,155,56,.45);
  border-radius:16px;
  padding:16px;
  box-shadow:0 12px 28px rgba(123,16,23,.08);
}
.project-mini-grid span,
.project-scope-box span{
  display:block;
  color:#7b1017;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:10px;
}
.project-mini-grid strong{
  color:#111;
  line-height:1.5;
  font-size:14px;
}
.project-scope-box{
  background:linear-gradient(135deg,#ffffff,#fff7e8);
  border:1px solid rgba(201,155,56,.55);
  border-left:5px solid #7b1017;
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 28px rgba(123,16,23,.08);
}
.project-scope-box p{
  color:#333;
  line-height:1.7;
  margin:0;
  font-size:16px;
}
@media(max-width:980px){
  .premium-project-card{
    grid-template-columns:1fr;
  }
  .premium-project-image{
    min-height:auto;
    border-right:0;
    border-bottom:5px solid #7b1017;
  }
  .premium-project-image img{
    height:auto;
    object-fit:contain;
  }
  .project-mini-grid{
    grid-template-columns:1fr;
  }
}


/* FINAL MOBILE NAVIGATION FIX */
.navbar{
  position:relative !important;
  z-index:9999 !important;
}
.menu-btn{
  display:none;
  background:transparent;
  border:0;
  font-size:32px;
  color:#111;
  cursor:pointer;
  line-height:1;
  padding:8px 10px;
}
@media(max-width:980px){
  .navbar{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    padding:14px 5% !important;
    background:linear-gradient(135deg,#ffffff,#fbf7ef) !important;
  }
  .brand img{
    width:170px !important;
    max-width:70vw !important;
    height:auto !important;
  }
  .menu-btn{
    display:block !important;
  }
  .nav-cta{
    display:none !important;
  }
  .nav-links{
    display:none !important;
    position:absolute !important;
    top:100% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    background:#ffffff !important;
    border-top:1px solid #eadfca !important;
    border-bottom:1px solid #eadfca !important;
    box-shadow:0 18px 35px rgba(0,0,0,.12) !important;
    padding:12px 5% !important;
    flex-direction:column !important;
    gap:0 !important;
    z-index:10000 !important;
  }
  .nav-links.show{
    display:flex !important;
  }
  .nav-links a{
    display:block !important;
    width:100% !important;
    padding:14px 8px !important;
    color:#111111 !important;
    text-decoration:none !important;
    font-weight:800 !important;
    border-bottom:1px solid #f0e5d2 !important;
  }
  .nav-links a:last-child{
    border-bottom:0 !important;
  }
}


/* Premium Contact Quote Card */
.quote-contact-section{
  padding:70px 7%;
  background:linear-gradient(180deg,#ffffff,#fbf7ef);
}
.quote-premium-card{
  max-width:1150px;
  margin:0 auto;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:34px;
  align-items:center;
  background:linear-gradient(135deg,#ffffff,#fffaf0);
  border:2px solid rgba(201,155,56,.55);
  border-radius:34px;
  padding:42px;
  box-shadow:0 28px 80px rgba(123,16,23,.16);
}
.quote-info span{
  color:#7b1017;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}
.quote-info h2{
  font-size:42px;
  margin:12px 0;
  color:#070707;
}
.quote-info p{
  color:#706b64;
  font-size:18px;
  line-height:1.8;
}
.quote-form{
  display:grid;
  gap:16px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.quote-form input,
.quote-form textarea{
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid #eadfca;
  font-size:15px;
  outline:none;
  background:#ffffff;
}
.quote-form textarea{
  min-height:130px;
  resize:vertical;
}
.quote-form input:focus,
.quote-form textarea:focus{
  border-color:#c99b38;
  box-shadow:0 0 0 3px rgba(201,155,56,.18);
}
.quote-form button{
  border:0;
  padding:16px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,#7b1017,#070707);
  color:#ffffff;
  font-weight:900;
  cursor:pointer;
}
@media(max-width:900px){
  .quote-premium-card,
  .form-row{
    grid-template-columns:1fr;
  }
}
