/* Paul Barnicoat - Painter & Decorator, Essex
   Bespoke build · Spectral + Inter · Deep navy + soft peach + cream
   Composition: editorial text-led, narrow content columns, refined */

:root{
  --navy: #1f3247;
  --navy-deep: #15233a;
  --navy-soft: #5a7095;
  --peach: #e8a87c;
  --peach-deep: #c98559;
  --ink: #15191e;
  --ink-2: #2a2f37;
  --ink-soft: #5e6573;
  --cream: #faf6ee;
  --cream-deep: #f0e9d9;
  --paper: #fdfbf5;
  --line: #d9d2bf;
  --warm: #b89b6b;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{ scroll-behavior:smooth; }
body{
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px; line-height: 1.7;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: var(--navy); text-decoration: none; }
a:hover{ color: var(--peach-deep); }
.container{ width: min(1100px, 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: 18px 0; gap: 22px; }
.bm{ display: flex; align-items: baseline; gap: 14px; color: var(--ink); text-decoration: none; }
.bm .name{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -.005em;
  line-height: 1.1;
  color: var(--navy);
}
.bm .name em{ font-style: italic; color: var(--peach-deep); }
.bm .sub{
  display:none;
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 14px; border-left: 1px solid var(--line);
}
@media (min-width:760px){ .bm .sub{ display:inline-block; } }

.nv{ display:none; list-style: none; gap: 16px; flex-wrap: nowrap; align-items: center; }
@media (min-width:1240px){ .nv{ display:flex; } }
.nv a{
  color: var(--ink-2); font-size: .85rem; font-weight: 500;
  letter-spacing: .015em;
  position: relative; padding: 6px 0;; white-space: nowrap; }
.nv a:hover, .nv a[aria-current="page"]{ color: var(--peach-deep); }
.nv a::after{
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--peach-deep);
  transition: width .22s ease;
}
.nv a:hover::after, .nv a[aria-current="page"]::after{ width: 100%; }

.phone-pill{
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); font-weight: 600; font-size: .9rem;
  padding: 10px 18px;
  border: 1px solid var(--line);
}
.phone-pill:hover{ border-color: var(--peach-deep); color: var(--peach-deep); }
.phone-pill svg{ width: 14px; height: 14px; }

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

/* HERO - editorial centred */
.hero{
  position: relative;
  background: var(--cream);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}
.hero h1{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06; letter-spacing: -.015em;
  color: var(--navy);
  max-width: 880px; margin: 0 auto 24px;
}
.hero h1 em{ font-style: italic; color: var(--peach-deep); }
.hero .eyebrow{
  display: inline-block;
  font-size: .76rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--peach-deep); font-weight: 600;
  margin-bottom: 26px;
}
.hero p.lede{
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 640px; margin: 0 auto 38px;
}
.hero-act{ display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: .86rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn-primary{ background: var(--navy); color: #fff; }
.btn-primary:hover{ background: var(--navy-deep); transform: translateY(-1px); color: #fff; }
.btn-peach{ background: var(--peach); color: var(--navy); }
.btn-peach:hover{ background: var(--peach-deep); color: #fff; }
.btn-outline{ background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover{ background: var(--navy); color: #fff; }

.hero-feature{
  margin-top: 56px;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.hero-feature img{
  width: 100%;
  box-shadow: 0 32px 64px rgba(20,28,42,.18);
}

/* Decorative line */
.divider{
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 28px 0;
}
.divider::before, .divider::after{
  content: ''; height: 1px; flex: 1; background: var(--line); max-width: 80px;
}
.divider span{
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  color: var(--peach-deep);
  font-size: 1.1rem;
}

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

.section-head{ max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow{
  display: inline-block;
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--peach-deep); font-weight: 600;
  margin-bottom: 16px;
}
.section-head h2{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-head h2 em{ font-style: italic; color: var(--peach-deep); }
.section-head p.kicker{
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem; color: var(--ink-soft);
  max-width: 560px; margin: 0 auto; line-height: 1.6;
}

/* Services grid */
.services{ background: var(--paper); }
.svc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 880px){ .svc-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .svc-grid{ grid-template-columns: 1fr; } }
.svc-tile{
  background: var(--cream);
  padding: 40px 32px;
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
  transition: background .25s ease, transform .2s ease;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.svc-tile:hover{
  background: var(--navy); color: var(--cream);
  transform: translateY(-3px);
}
.svc-tile .num{
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--peach-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.svc-tile h3{
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.5rem; font-weight: 500;
  margin-bottom: 12px; line-height: 1.15;
  color: var(--navy);
  transition: color .25s ease;
}
.svc-tile:hover h3{ color: var(--peach); }
.svc-tile p{ font-size: .94rem; line-height: 1.55; flex: 1; }
.svc-tile .arrow{
  margin-top: 18px;
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--peach-deep);
  font-weight: 600;
  transition: color .25s ease;
}
.svc-tile:hover .arrow{ color: var(--peach); }
.svc-tile .arrow::after{ content: ' →'; }

/* Process / Craft */
.craft{ background: var(--navy); color: var(--cream); padding: 80px 0; }
.craft .container{ max-width: 720px; }
.craft .eyebrow{
  display: block;
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--peach); font-weight: 600;
  margin-bottom: 16px; text-align: center;
}
.craft h2{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.4;
  text-align: center;
  color: var(--cream);
  margin-bottom: 20px;
}
.craft h2 .peach{ color: var(--peach); font-style: normal; }
.craft p{ text-align: center; color: rgba(250,246,238,.8); font-size: 1.06rem; }

/* CTA */
.cta-band{
  background: var(--peach);
  color: var(--navy);
  padding: 88px 0;
  text-align: center;
}
.cta-band h2{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1; margin-bottom: 18px;
}
.cta-band h2 em{ font-style: italic; color: var(--navy-deep); }
.cta-band p{ max-width: 560px; margin: 0 auto 32px; color: rgba(31,50,71,.82); font-size: 1.04rem; }
.cta-band .btn-navy{ background: var(--navy); color: #fff; }
.cta-band .btn-navy:hover{ background: var(--navy-deep); color: #fff; }
.cta-band .btn-outline{ border-color: rgba(31,50,71,.4); color: var(--navy); }
.cta-band .btn-outline:hover{ background: var(--navy); color: var(--peach); }

/* Page hero */
.page-hero{
  background: var(--navy);
  color: var(--cream);
  padding: 96px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.page-hero::after{
  content: '';
  position: absolute;
  top: -50px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--peach);
  opacity: .08;
}
.page-hero h1{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.08; letter-spacing: -.01em;
  margin-bottom: 16px;
  color: var(--cream);
}
.page-hero h1 em{ font-style: italic; color: var(--peach); }
.page-hero p{
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  color: rgba(250,246,238,.82);
  max-width: 600px; margin: 0 auto;
  font-size: 1.15rem;
}
.page-hero .crumbs{
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 22px;
  font-style: normal; font-family: 'Inter', sans-serif;
}
.page-hero .crumbs a{ color: var(--peach); }

/* Sub-body */
.sub-body{ background: var(--paper); padding: 80px 0; }
.sub-narrow{ max-width: 720px; margin: 0 auto; }
.sub-narrow p{
  font-size: 1.08rem; color: var(--ink-2);
  margin-bottom: 22px; line-height: 1.8;
}
.sub-narrow p.lead{
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-size: 1.45rem; line-height: 1.55;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}
.sub-narrow h2{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 36px 0 18px;
  color: var(--navy);
}
.sub-narrow h2 em{ font-style: italic; color: var(--peach-deep); }

.next-prev{
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.next-prev a{
  font-size: .86rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
}

/* Contact */
.contact{ background: var(--cream); padding: 80px 0; }
.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(--peach);
}
.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: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  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: 0;
}
.c-form input:focus, .c-form select:focus, .c-form textarea:focus{
  outline: 2px solid var(--peach); 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-family: 'Spectral', Georgia, serif;
  font-size: 1.7rem; font-weight: 500;
  color: var(--navy);
  margin-bottom: 22px;
}
.c-info dl{ display: grid; grid-template-columns: 90px 1fr; row-gap: 16px; align-items: baseline; }
.c-info dt{
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--peach-deep); font-weight: 700;
}
.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(--peach-deep); }
.c-map{ margin-top: 28px; border: 1px solid var(--line); }
.c-map iframe{ width: 100%; border: 0; display: block; }

/* Footer */
.site-footer{
  background: var(--navy-deep);
  color: rgba(250,246,238,.65);
  padding: 64px 0 24px;
  text-align: center;
}
.foot-mark{
  font-family: 'Spectral', Georgia, serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.foot-mark em{ font-style: italic; color: var(--peach); }
.foot-tag{
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(250,246,238,.45);
  margin-bottom: 26px;
}
.foot-links{ display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.foot-links a{ color: rgba(250,246,238,.7); font-size: .88rem; }
.foot-links a:hover{ color: var(--peach); }
.foot-contact{ display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 14px; font-size: .9rem; color: rgba(250,246,238,.7); }
.foot-contact a{ color: rgba(250,246,238,.7); }
.foot-contact a:hover{ color: #fff; }
.foot-bottom{
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .76rem; color: rgba(250,246,238,.4);
}

.sticky-call{
  position: fixed; bottom: 14px; left: 14px; right: 14px;
  background: var(--navy); color: var(--peach);
  padding: 13px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .94rem;
  z-index: 50; text-decoration: none;
}
.sticky-call:hover{ color: #fff; }
@media (min-width:900px){ .sticky-call{ display:none; } }
