/*
Theme Name: Calyra Cleaning Premium
Theme URI: https://calyracleaning.com
Author: Calyra Cleaning Services
Description: Premium custom WordPress theme built specifically for Calyra Cleaning Services.
Version: 2.0.0
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: calyra-cleaning-premium
*/

:root{
  --navy:#03172f;
  --navy-2:#08294f;
  --gold:#e2a928;
  --gold-dark:#c78c0e;
  --gold-light:#f2c85c;
  --white:#ffffff;
  --soft:#f5f7fb;
  --ink:#101827;
  --muted:#687386;
  --line:#dfe5ee;
  --max:1375px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#fff;color:var(--ink);font-family:Arial,Helvetica,sans-serif;line-height:1.6}
img{max-width:100%;height:auto}
a{color:inherit}
.calyra-shell{width:min(calc(100% - 30px),var(--max));margin:0 auto}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  border-bottom:1px solid rgba(3,23,47,.08);
}
.admin-bar .site-header{top:32px}
.header-row{
  min-height:200px;
  display:grid;
  grid-template-columns:minmax(410px,480px) 1fr auto;
  align-items:center;
  gap:32px;
}
.site-branding{
  justify-self:start;
  margin-left:-8px;
  width:100%;
}
.custom-logo-link{display:block;line-height:0}
.custom-logo{
  display:block;
  width:auto;
  height:auto;
  max-width:460px;
  max-height:182px;
  object-fit:contain;
  object-position:left center;
}
.default-logo{
  display:block;
  width:100%;
  max-width:440px;
}
.site-navigation{justify-self:center}
.primary-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  margin:0;
  padding:0;
  list-style:none;
}
.primary-menu a{
  position:relative;
  color:var(--navy);
  text-decoration:none;
  font-size:1rem;
  font-weight:800;
}
.primary-menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-12px;
  height:3px;
  background:var(--gold);
  transition:.2s;
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item>a::after{right:0}
.header-cta{white-space:nowrap}
.menu-toggle{
  display:none;
  border:0;
  border-radius:10px;
  padding:11px 15px;
  background:var(--navy);
  color:#fff;
  font-weight:800;
}

/* BUTTONS */
.calyra-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 26px;
  border:2px solid transparent;
  border-radius:12px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-weight:900;
  transition:transform .2s,box-shadow .2s;
}
.calyra-button:hover{transform:translateY(-2px)}
.button-gold{
  color:var(--navy);
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  box-shadow:0 12px 28px rgba(226,169,40,.25);
}
.button-outline{
  color:#fff;
  border-color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.04);
}

/* HERO */
.hero-section{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(90deg,var(--navy) 0%,var(--navy) 48%,var(--navy-2) 100%);
}
.hero-grid{
  min-height:635px;
  display:grid;
  grid-template-columns:1fr 1.05fr;
}
.hero-copy{
  position:relative;
  z-index:2;
  padding:58px 48px 52px 52px;
  background:
    linear-gradient(90deg,rgba(3,23,47,1) 0%,rgba(3,23,47,.98) 70%,rgba(3,23,47,.84) 100%);
}
.hero-copy::after{
  content:"";
  position:absolute;
  top:0;bottom:0;right:-120px;
  width:180px;
  background:linear-gradient(90deg,rgba(3,23,47,.84),transparent);
  pointer-events:none;
}
.eyebrow{
  color:var(--gold);
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.hero-title,.section-title,.entry-title{
  font-family:Georgia,"Times New Roman",serif;
}
.hero-title{
  max-width:640px;
  margin:22px 0 18px;
  font-size:clamp(3.5rem,6.5vw,6.2rem);
  line-height:.96;
  letter-spacing:-.045em;
}
.hero-title .gold-dot{color:var(--gold)}
.hero-description{
  max-width:650px;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
  font-size:1.16rem;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:18px}
.hero-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:670px;
  margin-top:30px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.23);
}
.hero-benefit{
  padding:0 20px;
  border-right:1px solid rgba(255,255,255,.22);
}
.hero-benefit:first-child{padding-left:0}
.hero-benefit:last-child{border-right:0}
.hero-benefit strong{
  display:block;
  color:#fff;
  font-size:1rem;
}
.hero-benefit span{
  color:rgba(255,255,255,.72);
  font-size:.88rem;
}
.hero-media{
  min-height:635px;
  background-size:cover;
  background-position:center;
}

/* SERVICES */
.calyra-section{padding:78px 0 95px}
.section-soft{background:linear-gradient(180deg,#fff 0%,var(--soft) 100%)}
.section-heading{
  max-width:920px;
  margin:0 auto 42px;
  text-align:center;
}
.section-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  color:var(--gold);
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.section-kicker::before,.section-kicker::after{
  content:"";
  width:48px;
  height:2px;
  background:var(--gold);
}
.section-title{
  margin:12px 0 12px;
  color:var(--navy);
  font-size:clamp(2.5rem,5vw,4.25rem);
  line-height:1.06;
}
.section-heading p{margin:0;color:var(--muted);font-size:1.02rem}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.service-card{
  min-height:200px;
  padding:30px;
  background:#fff;
  border:1px solid #edf0f4;
  border-radius:15px;
  box-shadow:0 14px 35px rgba(3,23,47,.08);
}
.service-icon{
  width:62px;height:62px;
  display:grid;place-items:center;
  margin-bottom:20px;
  color:var(--gold);
  border:2px solid var(--gold);
  border-radius:16px;
  font-size:1.35rem;
  font-weight:900;
}
.service-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:1.18rem;
}
.service-card p{margin:0;color:var(--muted);font-size:.95rem}

/* EXTRA SECTIONS */
.two-column{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:65px;
  align-items:center;
}
.two-column img{
  width:100%;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(3,23,47,.15);
}
.checks{list-style:none;padding:0;margin:28px 0}
.checks li{
  position:relative;
  margin:12px 0;
  padding-left:30px;
  color:var(--navy);
  font-weight:800;
}
.checks li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
}
.trust-strip{background:var(--navy);color:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{
  padding:36px 20px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.15);
}
.trust-item:last-child{border-right:0}
.trust-item strong{display:block;color:var(--gold);font-size:1.2rem}
.trust-item span{color:rgba(255,255,255,.72)}
.cta-panel{
  padding:60px 32px;
  text-align:center;
  color:#fff;
  border-radius:24px;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.cta-panel .section-title{color:#fff}
.cta-panel p{max-width:720px;margin:0 auto 26px;color:rgba(255,255,255,.8)}

/* PAGES */
.content-area{
  width:min(calc(100% - 40px),920px);
  margin:0 auto;
  padding:70px 0 100px;
}
.entry-title{
  color:var(--navy);
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1.08;
}

/* FOOTER */
.site-footer{
  padding:65px 0 25px;
  color:rgba(255,255,255,.76);
  background:#020f21;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:50px;
}
.footer-title{margin-top:0;color:#fff}
.footer-links{list-style:none;padding:0;margin:0;display:grid;gap:9px}
.footer-links a{text-decoration:none}
.footer-bottom{
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.13);
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.88rem;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .header-row{grid-template-columns:360px 1fr auto;min-height:160px}
  .custom-logo{max-width:350px;max-height:145px}
  .primary-menu{gap:24px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:900px){
  .admin-bar .site-header{top:46px}
  .header-row{display:flex;min-height:110px}
  .custom-logo{max-width:270px;max-height:95px}
  .header-cta{display:none}
  .menu-toggle{display:block}
  .site-navigation{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:16px;right:16px;
    padding:20px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 15px 45px rgba(0,0,0,.16);
  }
  .site-navigation.is-open{display:block}
  .primary-menu{flex-direction:column;align-items:flex-start}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy::after{display:none}
  .hero-media{min-height:450px}
  .two-column{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .calyra-shell{width:min(calc(100% - 22px),var(--max))}
  .header-row{min-height:90px}
  .custom-logo{max-width:220px;max-height:78px}
  .hero-copy{padding:65px 22px 45px}
  .hero-title{font-size:3.2rem}
  .hero-benefits{grid-template-columns:1fr;gap:16px}
  .hero-benefit{padding:0;border:0}
  .service-grid,.trust-grid,.footer-grid{grid-template-columns:1fr}
  .trust-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}
  .footer-bottom{flex-direction:column}
}
