/*
Theme Name: Cleankept One Pager
Theme URI: https://cleankept.co.uk
Author: ChatGPT
Description: Custom one-page Cleankept WordPress theme with mobile-first responsive layout.
Version: 2.0.0
Requires at least: 6.0
Text Domain: cleankept
*/

:root{
  --pink:#f6d9d8;
  --green:#55b879;
  --black:#050505;
  --white:#ffffff;
  --soft:#fbfbfb;
  --line:#e7e7e7;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{
  margin:0;
  background:#fff;
  color:var(--black);
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}

.ck-page{
  width:100%;
  max-width:1440px;
  margin:0 auto;
  background:#fff;
  overflow:hidden;
}

.ck-header{
  height:92px;
  background:var(--pink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 56px;
  position:relative;
  z-index:5;
}
.ck-logo{width:160px;height:auto}
.ck-nav{display:flex;gap:52px;align-items:center;font-size:16px;font-weight:600}
.ck-book-top{
  background:#000;
  color:#fff;
  border-radius:8px;
  padding:16px 28px;
  font-size:15px;
  font-weight:700;
}
.ck-menu{display:none;width:42px}
.ck-menu span{display:block;height:3px;background:#000;margin:8px 0;width:100%}

/* HERO: real image element, not background cover, to stop Safari/Chrome cropping */
.ck-hero{
  display:grid;
  grid-template-columns:42.35% 57.65%;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.ck-hero-copy{
  background:var(--green);
  padding:86px 56px 64px;
  min-height:640px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ck-title{
  font-size:104px;
  line-height:.91;
  letter-spacing:-.058em;
  margin:0 0 38px;
  font-weight:900;
  text-transform:uppercase;
  max-width:520px;
}
.ck-lede{
  font-size:19px;
  line-height:1.4;
  font-weight:500;
  margin:0 0 40px;
  max-width:390px;
}
.ck-actions{display:flex;align-items:center;gap:44px;flex-wrap:wrap}
.ck-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:176px;
  background:#000;
  color:#fff;
  border-radius:7px;
  padding:18px 30px;
  font-size:18px;
  line-height:1;
  font-weight:800;
}
.ck-text-link{font-size:18px;font-weight:600;white-space:nowrap}
.ck-text-link span{font-size:36px;vertical-align:-5px;margin-left:14px}

.ck-hero-visual{
  background:#fff;
  min-height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:42px 34px;
  overflow:hidden;
}
.ck-hero-img{
  width:100%;
  height:auto;
  max-height:560px;
  object-fit:contain;
  object-position:center center;
}

/* TRUST POINTS */
.ck-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#fbfbfb;
  border-bottom:1px solid var(--line);
  padding:54px 64px;
}
.ck-point{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  min-height:130px;
  padding:0 40px;
  border-right:1px solid #ddd;
}
.ck-point:last-child{border-right:0}
.ck-icon{width:58px;min-width:58px;color:#4ba36c}
.ck-point h3{font-size:18px;line-height:1.12;margin:0 0 8px;font-weight:800}
.ck-point p{font-size:16px;line-height:1.35;margin:0;color:#272727}

/* SERVICES */
.ck-section{padding:58px 64px 44px}
.ck-section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.ck-section h2{
  font-size:34px;
  line-height:1;
  margin:0;
  text-transform:uppercase;
  letter-spacing:-.04em;
  font-weight:900;
}
.ck-services{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.ck-service{
  border:1px solid #d9d9d9;
  border-radius:7px;
  overflow:hidden;
  background:#fff;
}
.ck-service-img{
  width:100%;
  height:245px;
  object-fit:cover;
  object-position:center center;
}
.ck-service-body{padding:28px}
.ck-service h3{
  margin:0;
  font-size:30px;
  line-height:.95;
  letter-spacing:-.04em;
  font-weight:900;
}

/* CONTACT */
.ck-contact-wrap{padding:0 64px 46px}
.ck-contact{
  background:#000;
  color:#fff;
  border-radius:10px;
  padding:46px 52px 48px;
}
.ck-contact h2{
  font-size:42px;
  line-height:1;
  margin:0 0 16px;
  text-transform:uppercase;
  letter-spacing:-.045em;
  font-weight:900;
}
.ck-contact p{font-size:20px;line-height:1.25;margin:0 0 34px}
.ck-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 22px;
}
.ck-form input,.ck-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.55);
  background:#fff;
  color:#111;
  border-radius:4px;
  padding:17px 20px;
  font-size:17px;
  outline:none;
}
.ck-form textarea{grid-column:1/-1;min-height:120px;resize:vertical}
.ck-submit{
  grid-column:1/-1;
  background:#000;
  color:#fff;
  border:1px solid rgba(255,255,255,.5);
  border-radius:4px;
  padding:18px 20px;
  font-weight:800;
  font-size:18px;
  cursor:pointer;
}
.ck-success,.ck-error{
  border:1px solid rgba(255,255,255,.35);
  padding:12px 14px;
  margin:0 0 20px;
  border-radius:4px;
}

/* FOOTER */
.ck-footer{
  background:var(--pink);
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 56px;
}
.ck-footer .ck-logo{width:166px}
.ck-footer-nav{display:flex;gap:58px;font-size:17px;font-weight:700}

/* TABLET */
@media (max-width: 980px){
  .ck-header{height:84px;padding:0 42px}
  .ck-nav,.ck-book-top{display:none}
  .ck-menu{display:block}
  .ck-hero-copy{padding:58px 42px;min-height:520px}
  .ck-title{font-size:74px}
  .ck-hero-visual{min-height:520px;padding:32px 24px}
  .ck-points{padding:42px 36px}
  .ck-point{padding:0 24px;gap:18px}
  .ck-section,.ck-contact-wrap{padding-left:42px;padding-right:42px}
}

/* MOBILE: designed to match the approved mobile screenshot */
@media (max-width: 700px){
  body{background:#fff}
  .ck-page{max-width:none;width:100%;box-shadow:none}
  .ck-header{
    height:80px;
    padding:0 22px;
    background:var(--pink);
  }
  .ck-logo{width:144px}
  .ck-menu{width:34px}
  .ck-menu span{height:3px;margin:7px 0}

  .ck-hero{
    grid-template-columns:44% 56%;
    min-height:0;
    border-bottom:1px solid var(--line);
  }
  .ck-hero-copy{
    min-height:0;
    padding:42px 18px 36px 22px;
    justify-content:flex-start;
  }
  .ck-title{
    font-size:clamp(40px, 9.3vw, 56px);
    line-height:.92;
    letter-spacing:-.055em;
    margin-bottom:28px;
    max-width:100%;
  }
  .ck-lede{
    font-size:clamp(14px, 3.5vw, 18px);
    line-height:1.35;
    margin-bottom:28px;
    max-width:100%;
  }
  .ck-actions{
    gap:22px;
    display:block;
  }
  .ck-btn{
    min-width:0;
    width:100%;
    max-width:205px;
    padding:16px 18px;
    font-size:17px;
    border-radius:6px;
    margin-bottom:24px;
  }
  .ck-text-link{
    display:inline-block;
    font-size:17px;
  }
  .ck-text-link span{
    font-size:32px;
    margin-left:12px;
  }
  .ck-hero-visual{
    min-height:0;
    padding:18px 8px 18px 8px;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }
  .ck-hero-img{
    width:100%;
    max-width:100%;
    max-height:none;
    height:auto;
    object-fit:contain;
  }

  .ck-points{
    grid-template-columns:repeat(3,1fr);
    padding:28px 18px 30px;
    gap:18px;
    background:#fff;
  }
  .ck-point{
    border:0;
    border-radius:13px;
    background:#fbfbfb;
    box-shadow:0 8px 28px rgba(0,0,0,.045);
    min-height:160px;
    padding:18px 11px;
    flex-direction:column;
    text-align:center;
    gap:14px;
    justify-content:flex-start;
  }
  .ck-icon{width:45px;min-width:45px}
  .ck-point h3{
    font-size:clamp(13px, 3.15vw, 16px);
    line-height:1.05;
    margin:0 0 10px;
  }
  .ck-point p{
    font-size:clamp(11px, 2.75vw, 13px);
    line-height:1.28;
  }

  .ck-section{padding:34px 22px 28px}
  .ck-section h2{font-size:30px}
  .ck-section-head{margin-bottom:22px}
  .ck-services{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:18px;
  }
  .ck-service{border-radius:7px}
  .ck-service-img{
    height:clamp(116px, 24vw, 178px);
    object-fit:cover;
  }
  .ck-service-body{padding:18px 16px 20px}
  .ck-service h3{
    font-size:clamp(20px, 4.7vw, 26px);
    line-height:.95;
  }

  .ck-contact-wrap{padding:0 0 0}
  .ck-contact{
    border-radius:8px 8px 0 0;
    padding:28px 22px 32px;
  }
  .ck-contact h2{font-size:30px;margin-bottom:12px}
  .ck-contact p{font-size:16px;margin-bottom:22px}
  .ck-form{
    grid-template-columns:1fr 1fr;
    gap:12px 14px;
  }
  .ck-form input,.ck-form textarea{
    background:#000;
    color:#fff;
    border:1px solid rgba(255,255,255,.75);
    border-radius:4px;
    padding:14px 16px;
    font-size:14px;
  }
  .ck-form input::placeholder,.ck-form textarea::placeholder{color:#fff;opacity:.95}
  .ck-form textarea{grid-column:2/3;min-height:49px}
  .ck-submit{padding:15px 18px;font-size:17px}

  .ck-footer{
    height:86px;
    min-height:86px;
    padding:0 22px;
  }
  .ck-footer .ck-logo{width:150px}
  .ck-footer-nav{gap:28px;font-size:15px}
  .ck-footer-nav a:nth-child(3){display:none}
}

/* VERY SMALL PHONES: keep layout intact, but reduce sizes rather than stacking */
@media (max-width: 430px){
  .ck-header{height:74px}
  .ck-logo{width:126px}
  .ck-menu{width:30px}
  .ck-hero{grid-template-columns:43% 57%}
  .ck-hero-copy{padding:34px 14px 30px 18px}
  .ck-title{font-size:clamp(34px, 9.2vw, 42px);margin-bottom:24px}
  .ck-lede{font-size:13.5px;margin-bottom:24px}
  .ck-btn{font-size:15px;padding:14px 12px;max-width:185px}
  .ck-text-link{font-size:15px}
  .ck-hero-visual{padding:14px 5px}
  .ck-points{padding:24px 16px;gap:12px}
  .ck-point{min-height:148px;padding:14px 8px}
  .ck-icon{width:38px;min-width:38px}
  .ck-section{padding:32px 18px 26px}
  .ck-section h2{font-size:26px}
  .ck-services{gap:14px}
  .ck-service-img{height:106px}
  .ck-service-body{padding:15px 13px 17px}
  .ck-service h3{font-size:20px}
  .ck-contact{padding:26px 18px 30px}
  .ck-footer .ck-logo{width:126px}
  .ck-footer-nav{gap:22px;font-size:14px}
}
