:root{
  --bg:#f7f3ed;
  --surface:#ffffff;
  --text:#1f2d38;
  --muted:#697681;
  --primary:#12b0af;
  --primary-dark:#0e8f8e;
  --secondary:#14384e;
  --border:#e9dfd3;
  --shadow:0 18px 40px rgba(20,56,78,0.08);
  --radius:24px;
  --max:1240px;
}

/* RESET */
*{
  box-sizing:border-box;
}

html,
body{
  margin:0 !important;
  padding:0 !important;
  overflow-x:hidden;
}

body{
  background:var(--bg);
  color:var(--text);
  padding-top:96px;
}

a{
  text-decoration:none;
}

img,
video{
  display:block;
  max-width:100%;
}

.wp-site-blocks{
  margin-top:0 !important;
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.wp-site-blocks > *:first-child{
  margin-top:0 !important;
}

header.wp-block-template-part,
footer.wp-block-template-part,
main.wp-block-group{
  margin-top:0 !important;
  padding-top:0 !important;
}

.site-container{
  width:min(92%, var(--max));
  margin:0 auto;
}

/* HEADER */
.custom-site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,0.06);
  box-shadow:0 4px 14px rgba(0,0,0,0.03);
}

body.admin-bar .custom-site-header{
  top:32px;
}

.custom-site-header-inner{
  width:min(92%, 1240px);
  margin:0 auto;
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.custom-site-header .wp-block-site-logo img{
  height:68px !important;
  width:auto !important;
  object-fit:contain;
}

.custom-site-header .wp-block-navigation{
  gap:24px;
}

.custom-site-header .wp-block-navigation-item__content{
  color:var(--text);
  font:600 15px/1.2 Arial, Helvetica, sans-serif;
  transition:0.3s ease;
}

.custom-site-header .wp-block-navigation-item__content:hover{
  color:var(--primary);
}

/* COMMON */
.section{
  padding:70px 0;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:.18em;
  font:700 12px/1.2 Arial, Helvetica, sans-serif;
}

.section-head{
  margin-bottom:34px;
}

.section-head.center{
  text-align:center;
}

.section-head h2,
.about h2,
.contact h2,
.inner-content h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.1;
  color:var(--secondary);
}

.section-head p,
.about p,
.contact p,
.project-body p,
.why-card p,
.inner-content p,
.inner-hero p{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--muted);
  line-height:1.8;
}

/* HERO */
.hero-video{
  position:relative;
  min-height:calc(88vh - 20px);
  overflow:hidden;
  display:flex;
  align-items:center;
}

.hero-video-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(10,20,30,0.60) 0%,
    rgba(10,20,30,0.25) 45%,
    rgba(10,20,30,0.10) 100%
  );
}

.hero-inner{
  position:relative;
  z-index:2;
}

.hero-content{
  max-width:1100px;
}

.hero-heading{
  margin:0 0 12px;
  font-size:clamp(3rem,5vw,4.5rem);
  line-height:1.05;
  font-weight:800;
  color:#ffffff;
}

.hero-content p{
  margin:0 0 18px;
  max-width:760px;
  font-size:1rem;
  line-height:1.8;
  color:rgba(255,255,255,0.88);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font:700 .95rem/1 Arial, Helvetica, sans-serif;
  transition:0.3s ease;
}

.btn-primary{
  background:#12b0af;
  color:#ffffff;
  box-shadow:0 6px 18px rgba(18,176,175,0.30);
}

.btn-primary:hover{
  background:#0e8f8e;
}

.btn-secondary{
  background:transparent;
  color:#ffffff;
  border:1px solid rgba(255,255,255,0.45);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.08);
}

.inline-link{
  display:inline-block;
  margin-top:14px;
  color:var(--primary);
  font:700 .95rem Arial, Helvetica, sans-serif;
}

/* HOME ABOUT */
.about-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}

.about-image{
  overflow:hidden;
  border-radius:24px;
}

.about-image img{
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  transition:0.5s ease;
}

.about-image:hover img{
  transform:scale(1.04);
}

.about-content h2{
  font-size:clamp(2.2rem,4vw,3.3rem);
  line-height:1.1;
  margin-bottom:18px;
}

.about-content p{
  margin-bottom:16px;
  line-height:1.9;
}

/* DELIVERY */
.delivery{
  background:linear-gradient(180deg,#fffdf9 0%,#f7f3ed 100%);
}

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

.meter-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:34px 24px;
  text-align:center;
}

.meter-card h3{
  margin:0 0 12px;
  color:var(--secondary);
  font-size:clamp(2rem,4vw,3rem);
  font-weight:500;
}

.meter-card p{
  margin:0;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  font:700 .9rem/1.4 Arial, Helvetica, sans-serif;
}

/* PROJECT CARDS */
.project-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.project-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:0.35s ease;
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(20,56,78,0.10);
}

.project-img,
.project-image img,
.detailed-project-card .project-img{
  width:100%;
  height:320px;
  object-fit:contain;
  object-position:center;
  background:linear-gradient(180deg,#ffffff 0%,#f7f3ed 100%);
  padding:12px;
  border-radius:24px 24px 0 0;
  transition:0.4s ease;
}

.project-card:hover .project-img,
.project-card:hover .project-image img{
  transform:scale(1.02);
}

.project-body{
  padding:24px;
}

.project-body h3{
  margin:0 0 8px;
  color:var(--secondary);
  font-size:1.5rem;
  line-height:1.2;
}

.project-body p{
  font-size:0.98rem;
  color:var(--muted);
  line-height:1.7;
}

.project-location{
  margin:0 0 20px !important;
  color:var(--primary) !important;
  font-size:1rem !important;
  line-height:1.6;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}

.project-location::before{
  content:"📍";
  font-size:0.95rem;
}

/* PROJECT META */
.project-meta{
  display:grid;
  gap:12px;
}

.project-meta-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(20,56,78,0.08);
}

.project-meta-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.meta-label{
  color:var(--muted);
  font:700 0.85rem/1.4 Arial, Helvetica, sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.meta-value{
  color:var(--secondary);
  font:700 0.95rem/1.4 Arial, Helvetica, sans-serif;
  text-align:right;
}

/* WHY SECTION */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.why-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:30px 24px;
  transition:0.35s ease;
}

.why-card:hover{
  transform:translateY(-6px);
}

.why-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:rgba(18,176,175,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:16px;
}

.why-card h3{
  margin:0 0 12px;
  color:var(--secondary);
  font-size:1.25rem;
}

.why-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

/* CONTACT */
.contact-info{
  margin-top:18px;
}

.contact-info p + p{
  margin-top:8px;
}

.enquiry-form{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:24px;
  display:grid;
  gap:14px;
}

.enquiry-form input,
.enquiry-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  font-size:0.95rem;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(18,176,175,0.14);
}

/* INNER PAGES */
.inner-hero{
  padding:72px 0 42px;
  background:linear-gradient(180deg,#fffdf9 0%,#f7f3ed 100%);
}

.inner-hero h1{
  margin:0 0 12px;
  font-size:clamp(2.6rem,5vw,4.5rem);
  line-height:1.05;
  color:var(--secondary);
}

/* ABOUT PAGE */
.about-page-hero{
  padding:72px 0 42px;
  background:linear-gradient(180deg,#fffdf9 0%,#f7f3ed 100%);
  overflow:hidden;
}

.about-page-hero h1{
  max-width:1200px;
  margin:0 0 18px;
  font-size:clamp(2.8rem,5vw,5.3rem);
  line-height:1.05;
  color:var(--secondary);
  word-break:normal;
}

.about-page-hero p{
  max-width:980px;
  margin:0;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
  font-family:Arial, Helvetica, sans-serif;
}

.about-page-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  overflow:hidden;
}

.about-page-image{
  width:100%;
  overflow:hidden;
  border-radius:24px;
}

.about-page-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:24px;
  background:#ffffff;
}

.about-page-content h2{
  margin:0 0 14px;
  font-size:clamp(2rem,4vw,3rem);
  color:var(--secondary);
  line-height:1.1;
}

.about-page-content p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.85;
  font-size:1rem;
}

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

.timeline-card,
.value-card,
.about-stat-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:28px 24px;
}

.timeline-year{
  display:inline-block;
  margin-bottom:12px;
  color:var(--primary);
  font:700 0.95rem/1 Arial, Helvetica, sans-serif;
  letter-spacing:.08em;
}

.timeline-card h3,
.value-card h3,
.about-stat-card h3{
  margin:0 0 10px;
  color:var(--secondary);
}

.timeline-card p,
.value-card p,
.about-stat-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.about-stat-card{
  text-align:center;
}

.about-stat-card h3{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:8px;
}

.about-cta-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:32px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.about-cta-box h2{
  margin:0 0 8px;
  color:var(--secondary);
}

.about-cta-box p{
  margin:0;
  color:var(--muted);
}

/* FOOTER */
.custom-site-footer{
  background:#000000;
  color:#ffffff;
  padding-top:34px;
}

.footer-main{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.footer-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}

.footer-title{
  display:block;
  margin-bottom:12px;
  color:#ffffff;
  font-size:1.15rem;
  font-weight:700;
}

.footer-section p,
.footer-section li,
.footer-section a{
  margin:0 0 8px;
  font-size:0.95rem;
  color:rgba(255,255,255,0.82);
  line-height:1.7;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links a:hover{
  color:#12b0af;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  margin-top:20px;
  padding:14px 0;
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:0.88rem;
  color:rgba(255,255,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 991px){
  body{
    padding-top:88px;
  }

  .about-grid,
  .contact-grid,
  .project-grid,
  .why-grid,
  .meter-grid,
  .footer-top,
  .about-page-grid,
  .timeline-grid,
  .values-grid,
  .about-stats-grid{
    grid-template-columns:1fr;
  }

  .about-image img{
    height:360px;
  }

  .project-img,
  .project-image img,
  .detailed-project-card .project-img{
    height:280px;
  }

  .custom-site-header .wp-block-site-logo img{
    height:60px !important;
  }

  .about-page-hero h1{
    font-size:clamp(2.6rem,7vw,4rem);
  }

  .about-cta-box{
    display:grid;
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  body{
    padding-top:82px;
  }

  .section{
    padding:46px 0;
  }

  .hero-heading{
    font-size:2.5rem;
    line-height:1.1;
  }

  .hero-content p{
    font-size:0.95rem;
  }

  .btn{
    min-height:46px;
    padding:0 18px;
  }

  .project-img,
  .project-image img,
  .detailed-project-card .project-img{
    height:240px;
    padding:8px;
  }

  .project-meta-item{
    flex-direction:column;
    gap:4px;
  }

  .meta-value{
    text-align:left;
  }

  .about-image img{
    height:280px;
  }

  .custom-site-header .wp-block-site-logo img{
    height:54px !important;
  }

  .inner-hero h1,
  .about-page-hero h1{
    font-size:2.5rem;
    line-height:1.1;
  }

  .about-page-hero{
    padding:48px 0 28px;
  }
  
  
}