/* D West & Sons Ltd — Newport Pagnell, Milton Keynes
   Bespoke build · Manrope alone · Royal blue + bright yellow + warm white
   Composition: asymmetric panel hero, pill-stripe services, TV feature callout */

:root{
  --royal: #1e40af;
  --royal-deep: #16329a;
  --royal-soft: #6086e0;
  --yellow: #facc15;
  --yellow-deep: #d4a40e;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-soft: #475569;
  --line: #e2e8f0;
  --cream: #fefcf3;
  --bg: #f8fafc;
  --paper: #ffffff;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{ scroll-behavior:smooth; }
body{
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 17px; line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: var(--royal); text-decoration: none; }
a:hover{ color: var(--royal-deep); }

.container{ width: min(1180px, 92vw); margin: 0 auto; }

/* HEADER */
.site-header{
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.hd{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 22px;
}
.b-mark{
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); text-decoration: none;
}
.b-mark .ico{
  width: 44px; height: 44px;
  background: var(--royal);
  color: var(--yellow);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: -.02em;
  border-radius: 6px;
}
.b-mark .lbl{
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -.015em;
  line-height: 1.05;
  color: var(--ink);
}
.b-mark .lbl .amp{ color: var(--royal); font-weight: 500; }
.b-mark .lbl .sub{
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-top: 4px;
}

.nav-list{ display:none; list-style: none; gap: 28px; }
@media (min-width: 920px){ .nav-list{ display: flex; } }
.nav-list a{
  color: var(--ink); font-weight: 600; font-size: .92rem;
  position: relative; padding: 6px 0;
}
.nav-list a:hover, .nav-list a[aria-current="page"]{ color: var(--royal); }
.nav-list a::after{
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 3px; background: var(--yellow);
  transition: width .22s ease;
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after{ width: 100%; }

.hdr-call{
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--royal); color: #fff;
  padding: 11px 20px;
  font-weight: 700; font-size: .9rem;
  border-radius: 999px;
}
.hdr-call:hover{ background: var(--royal-deep); color: #fff; }
.hdr-call svg{ width: 16px; height: 16px; }

.menu-btn{
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 8px; cursor: pointer;
}
@media (min-width: 920px){ .menu-btn{ display: none; } }
.menu-btn span{ width: 24px; height: 2px; background: var(--ink); }
.mob-nav{
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mob-nav.open{ display: block; }
.mob-nav ul{ list-style: none; padding: 8px 24px 24px; }
.mob-nav li{ border-bottom: 1px solid var(--line); }
.mob-nav a{ display: block; padding: 14px 0; color: var(--ink); font-weight: 600; }

/* HERO - asymmetric panels */
.hero{
  background: var(--cream);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px){ .hero-grid{ grid-template-columns: 1fr; gap: 32px; } }
.hero-text{ padding-bottom: 80px; }
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--royal);
  background: rgba(30,64,175,.08);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-eyebrow .dot{ width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
.hero h1{
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .ac{ color: var(--royal); }
.hero h1 .hl{ background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%, var(--yellow) 92%, transparent 92%); padding: 0 4px; }
.hero p.lede{
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-act{ display: flex; gap: 14px; flex-wrap: wrap; }
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: .92rem; font-weight: 700;
  text-decoration: none;
  cursor: pointer; border: 0;
  border-radius: 8px;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn-primary{ background: var(--royal); color: #fff; }
.btn-primary:hover{ background: var(--royal-deep); transform: translateY(-1px); color: #fff; }
.btn-outline{
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: #fff; }
.btn-yellow{ background: var(--yellow); color: var(--ink); }
.btn-yellow:hover{ background: var(--yellow-deep); color: var(--ink); }
.btn-light{ background: #fff; color: var(--royal); }
.btn-light:hover{ background: var(--bg); }

/* Hero photo stack */
.hero-photo{
  position: relative;
  align-self: end;
  padding: 0 0 80px;
}
.hero-photo .main{
  width: 100%;
  aspect-ratio: 5 / 4;
  background: var(--royal);
  background-size: cover; background-position: center;
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(30,64,175,.25);
}
.hero-photo .accent-box{
  position: absolute; bottom: 60px; left: -20px;
  background: var(--yellow);
  color: var(--ink);
  padding: 22px 26px;
  border-radius: 10px;
  max-width: 260px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.hero-photo .accent-box .gas-icon{
  width: 44px; height: 44px;
  background: var(--ink); color: var(--yellow);
  display: grid; place-items: center;
  font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  border-radius: 6px;
  margin-bottom: 10px;
}
.hero-photo .accent-box strong{
  display: block; font-size: 1rem; font-weight: 800;
  margin-bottom: 4px; letter-spacing: -.01em;
}
.hero-photo .accent-box span{
  font-size: .82rem; color: var(--ink-2); line-height: 1.4;
}

/* Trust bar */
.trust-bar{
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.trust-row{
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 36px;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.trust-row .dot{ width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }

/* SECTIONS */
section{ padding: 96px 0; }
@media (max-width: 720px){ section{ padding: 64px 0; } }

.section-head{
  max-width: 760px; margin-bottom: 52px;
}
.section-head.center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow{
  display: inline-block;
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--royal); font-weight: 700;
  margin-bottom: 14px;
}
.section-head h2{
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08; letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-head h2 .ac{ color: var(--royal); }
.section-head h2 .hl{ background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%, var(--yellow) 92%, transparent 92%); padding: 0 4px; }
.section-head p.kicker{ font-size: 1.06rem; color: var(--ink-soft); max-width: 600px; }
.section-head.center p.kicker{ margin-left: auto; margin-right: auto; }

/* About */
.about{ background: var(--bg); }
.about-row{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
@media (max-width: 880px){ .about-row{ grid-template-columns: 1fr; gap: 40px; } }
.about p{ color: var(--ink-soft); margin-bottom: 18px; font-size: 1.04rem; }
.about p.intro{
  font-size: 1.18rem; color: var(--ink);
  font-weight: 500;
  margin-bottom: 22px;
}
.why-list{
  list-style: none; padding: 0;
}
.why-list li{
  display: grid; grid-template-columns: 48px 1fr; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:last-child{ border-bottom: 0; }
.why-list .num{
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--royal);
  background: rgba(30,64,175,.08);
  border-radius: 8px;
  display: grid; place-items: center;
  width: 48px; height: 48px;
}
.why-list h4{
  font-size: 1.05rem; font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-list p{
  font-size: .94rem;
  color: var(--ink-soft);
  margin: 0;
}

/* SERVICES — chip stripe */
.services{ background: var(--paper); }
.svc-stripe{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 880px){ .svc-stripe{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .svc-stripe{ grid-template-columns: 1fr; } }
.svc-chip{
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 26px 22px;
  border-radius: 12px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
}
.svc-chip:hover{ transform: translateY(-3px); border-color: var(--royal); box-shadow: 0 14px 32px rgba(30,64,175,.1); }
.svc-chip .badge{
  display: inline-block;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--royal); font-weight: 800;
  margin-bottom: 10px;
}
.svc-chip h3{
  font-size: 1.12rem; font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.svc-chip p{ color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }

/* TV / DIY SOS feature */
.tv-feature{ background: var(--ink); color: #fff; padding: 88px 0; }
.tv-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 880px){ .tv-grid{ grid-template-columns: 1fr; gap: 36px; } }
.tv-grid .tv-tag{
  display: inline-block;
  background: var(--yellow); color: var(--ink);
  padding: 6px 14px;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 24px;
}
.tv-grid h3{
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.015em;
}
.tv-grid h3 .ac{ color: var(--yellow); }
.tv-grid p{
  color: rgba(255,255,255,.78);
  margin-bottom: 16px;
  font-size: 1rem;
}
.tv-shows{
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 24px;
}
.tv-shows .show{
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--yellow);
  padding: 16px 22px;
}
.tv-shows .show strong{
  display: block; color: #fff; font-weight: 800; font-size: 1.05rem;
}
.tv-shows .show span{ font-size: .82rem; color: rgba(255,255,255,.7); }

/* CTA */
.cta-band{
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: #fff;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before{
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: .15;
  border-radius: 50%;
}
.cta-band h2{
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -.015em;
  position: relative; z-index: 1;
}
.cta-band h2 .ac{ color: var(--yellow); }
.cta-band p{
  max-width: 560px; margin: 0 auto 32px;
  color: rgba(255,255,255,.88); font-size: 1.06rem;
  position: relative; z-index: 1;
}
.cta-band .btns{
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}

/* CONTACT */
.contact{ background: var(--bg); }
.c-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: start;
}
@media (max-width: 880px){ .c-grid{ grid-template-columns: 1fr; gap: 40px; } }
.c-form{
  background: var(--paper);
  padding: 40px 36px;
  border-top: 4px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
}
.c-form .row{ display: grid; gap: 16px; margin-bottom: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px){ .c-form .row{ grid-template-columns: 1fr; } }
.c-form label{
  display: block;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  margin-bottom: 6px;
}
.c-form input, .c-form select, .c-form textarea{
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  border-radius: 6px;
}
.c-form input:focus, .c-form select:focus, .c-form textarea:focus{
  outline: 2px solid var(--royal); outline-offset: -2px;
}
.c-form textarea{ min-height: 130px; resize: vertical; }
.c-form button{ width: 100%; margin-top: 12px; }
.c-form .promise{ margin-top: 14px; font-size: .8rem; color: var(--ink-soft); }
.c-info h3{
  font-size: 1.6rem; font-weight: 800;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.c-info dl{ display: grid; grid-template-columns: 100px 1fr; row-gap: 16px; align-items: baseline; }
.c-info dt{
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--royal); font-weight: 800;
}
.c-info dd{ color: var(--ink-2); }
.c-info dd a{ color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.c-info dd a:hover{ color: var(--royal); }
.c-map{ margin-top: 28px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.c-map iframe{ width: 100%; border: 0; display: block; }

/* FOOTER */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.fg{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 48px;
}
@media (max-width: 720px){ .fg{ grid-template-columns: 1fr; gap: 36px; } }
.fg h4{
  font-size: .82rem; font-weight: 800;
  color: var(--yellow);
  margin-bottom: 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.fg ul{ list-style: none; }
.fg li{ margin-bottom: 8px; font-size: .92rem; }
.fg a{ color: rgba(255,255,255,.7); }
.fg a:hover{ color: #fff; }
.foot-brand{ font-weight: 800; font-size: 1.4rem; color: #fff; margin-bottom: 12px; letter-spacing: -.01em; line-height: 1.05; }
.foot-brand .amp{ color: var(--royal-soft); font-weight: 500; }
.foot-brand .sub{
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow);
  margin-top: 6px;
}
.foot-bottom{
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: .78rem; color: rgba(255,255,255,.5);
}

/* Page hero */
.page-hero{
  background: var(--ink);
  color: #fff;
  padding: 88px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before{
  content: ''; position: absolute;
  top: -50px; right: -80px;
  width: 250px; height: 250px;
  background: var(--royal);
  opacity: .3;
  border-radius: 50%;
}
.page-hero h1{
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.page-hero h1 .ac{ color: var(--yellow); }
.page-hero p{ color: rgba(255,255,255,.82); max-width: 560px; font-size: 1.06rem; position: relative; z-index: 1; }
.page-hero .crumbs{
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 22px;
}
.page-hero .crumbs a{ color: var(--yellow); }

/* Sticky mobile call */
.sticky-call{
  position: fixed; bottom: 14px; left: 14px; right: 14px;
  background: var(--royal); color: #fff;
  padding: 13px 18px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .94rem;
  z-index: 50; text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(30,64,175,.4);
}
.sticky-call:hover{ color: #fff; }
@media (min-width: 900px){ .sticky-call{ display: none; } }
