/* ============================================================
   Rob Davies Carpet & Vinyl Specialist
   Main Stylesheet — style.css
   
   TODO: Upload this file to /assets/css/style.css on IONOS
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --color-primary:    #0B0B0B;
  --color-secondary:  #F2F2F0;
  --color-accent:     #E86A2C;
  --color-accent-dark:#BE4D19;
  --color-bg:         #FFFFFF;
  --color-text:       #2C2C2C;
  --color-text-light: #666666;
  --color-border:     #D7D7D4;
  --color-success:    #2E7D32;
  --color-error:      #C62828;
  --color-call:       var(--color-accent);
  --color-lime:       #D8F06A;
  --color-lime-dark:  #B6CF45;
  --color-orange-soft:#FFF0E8;
  --color-section:    #FAFAF8;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.13);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.15);

  --transition: 0.25s ease;

  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);

  --header-height: 86px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  loading: lazy;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }

ul { list-style: none; }

/* Focus outline for keyboard navigation (accessibility) */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section--grey { background: var(--color-secondary); }
.section--dark  { background: var(--color-primary); color: #fff; }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--color-text-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: #2d2d2d;
  border-color: #2d2d2d;
  color: #fff;
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.site-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.site-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.site-logo { flex-direction: row; align-items: center; gap: 0.65rem; }
.site-logo img.logo-mark { width: 54px; height: 54px; object-fit: cover; object-position: center 54%; border-radius: 50%; background: #000; box-shadow: 0 2px 10px rgba(0,0,0,0.18); }
.site-logo .logo-text { display:flex; flex-direction:column; line-height:1.15; }
.footer-brand .site-logo { margin-bottom: 0.75rem; }
.footer-brand .site-logo img.logo-mark { width: 64px; height: 64px; }
.visually-hidden { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
/* TODO: If Rob has a logo image, replace the text logo with:
   <img src="assets/images/logo.png" alt="Rob Davies Carpet & Vinyl Specialist" width="180">
*/

/* Nav */
.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-accent);
  background: rgba(196,154,108,0.08);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 0.75rem; }

.header-tel {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.header-tel:hover { color: var(--color-accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  aria-label: "Toggle navigation menu";
}

.hamburger:hover { background: var(--color-secondary); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem var(--container-pad);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--color-secondary);
  color: var(--color-accent);
}

.mobile-nav .mobile-nav-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 0.6rem var(--container-pad);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: var(--color-accent);
  font-weight: 700;
}

.announcement-bar a:hover { text-decoration: underline; }

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  /* TODO: Replace hero-bg.jpg with a real UK home interior flooring photo */
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,154,108,0.2);
  border: 1px solid rgba(196,154,108,0.4);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--color-accent);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item svg { flex-shrink: 0; }

/* ── Service Cards Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  background: rgba(196,154,108,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 0; }
.service-card p  { font-size: 0.92rem; color: var(--color-text-light); flex: 1; }
.service-card .card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.service-card .card-link:hover { gap: 0.5rem; }

/* ── Mobile Showroom Section ── */
.showroom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showroom-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-secondary);
  /* TODO: Replace with real mobile showroom / van photo */
}

.showroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-content .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.showroom-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.showroom-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.showroom-step .step-num {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Why Choose Rob ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-accent);
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.why-card h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img img { transform: scale(1.04); }

.gallery-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-caption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--color-text);
}

/* ── Landlord Section ── */
.landlord-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.landlord-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.landlord-feature .check {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.landlord-feature p { font-size: 0.92rem; margin: 0; }

/* ── Areas ── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.area-tag {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.area-tag:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.map-placeholder {
  width: 100%;
  height: 380px;
  background: var(--color-secondary);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 2rem 0;
}

/* TODO: Replace .map-placeholder div with your Google Maps Hosted Embed iframe */

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
  color: #F4B400;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600; }
.review-location { font-size: 0.78rem; color: var(--color-text-light); }

.google-reviews-placeholder {
  background: var(--color-secondary);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: var(--color-text-light);
  margin-top: 2rem;
  font-size: 0.9rem;
}
/* TODO: Replace .google-reviews-placeholder with your Google Reviews widget embed code */

/* ── Contact Form ── */
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(196,154,108,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-light); margin-bottom: 0.2rem; }
.contact-detail a  { font-size: 1rem; font-weight: 600; font-family: var(--font-heading); }
.contact-detail a:hover { color: var(--color-accent); }

/* Form styles */
.quote-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group label .required { color: var(--color-accent); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196,154,108,0.15);
  outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

.form-group .error-msg {
  font-size: 0.78rem;
  color: var(--color-error);
  display: none;
}

.form-group.has-error .error-msg { display: block; }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.92rem;
}

.form-radio input[type="radio"] { accent-color: var(--color-accent); width: 16px; height: 16px; }

.form-submit-area {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Honeypot (spam protection) */
.form-honeypot { display: none !important; visibility: hidden; position: absolute; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.88rem; color: var(--color-text-light); margin: 0; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-accent); }
.faq-question.open  { color: var(--color-accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: #fff;
}

.faq-answer {
  display: none;
  padding-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.faq-answer.open { display: block; }

/* ── Area Cards (areas page) ── */
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.area-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--color-accent); }
.area-card p  { font-size: 0.92rem; color: var(--color-text-light); margin-bottom: 1.25rem; }

/* ── Breadcrumbs ── */
.breadcrumbs {
  background: var(--color-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.breadcrumb-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-light); }
.breadcrumb-list a  { color: var(--color-text-light); transition: color var(--transition); }
.breadcrumb-list a:hover { color: var(--color-accent); }
.breadcrumb-list li:last-child { color: var(--color-text); font-weight: 500; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--color-primary);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  /* TODO: Can use a different bg image per page for variety */
  opacity: 0.12;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1     { color: #fff; margin-bottom: 0.75rem; }
.page-hero .lead  { color: rgba(255,255,255,0.75); max-width: 620px; }

/* ── Floating WhatsApp Button ── */
.call-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  box-shadow: 0 4px 20px rgba(211,245,95,0.35);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  max-width: 280px;
  white-space: nowrap;
}

.call-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(211,245,95,0.45);
  color: #fff;
}

.call-float svg { flex-shrink: 0; width: 24px; height: 24px; }

.call-label { line-height: 1.3; }
.call-label .main  { display: block; }
.call-label .sub   { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.85; }

/* Pulse animation on call button */
@keyframes call-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(211,245,95,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(211,245,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(211,245,95,0); }
}
.call-float { animation: call-pulse 2.5s infinite; }
.call-float:hover { animation: none; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.75rem;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-3px); background: var(--color-accent); }

/* ── Postcode Strip (footer SEO) ── */
.postcode-strip {
  background: #111;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

/* ── Footer ── */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-main { color: #fff; font-size: 1.1rem; }
.footer-brand .logo-sub  { color: var(--color-accent); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 1rem 0; line-height: 1.7; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-accent); color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col ul a:hover { color: var(--color-accent); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  margin-bottom: 0.75rem;
}
.footer-contact a:hover { color: var(--color-accent); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ── Thank You Page ── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(196,154,108,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--color-accent);
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 1.5rem auto 2rem;
  text-align: left;
}

.thankyou-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.thankyou-step .num {
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── 404 Page ── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── Utility classes ── */
.text-center  { text-align: center; }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-light); }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
  margin: 1rem auto 0;
}

.divider--left { margin-left: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(196,154,108,0.12);
  color: var(--color-accent);
  border: 1px solid rgba(196,154,108,0.3);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-form-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .showroom-section { grid-template-columns: 1fr; gap: 2rem; }
  .showroom-image { max-width: 500px; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .header-tel { font-size: 0.82rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-pair { grid-template-columns: 1fr 1fr; }

  .call-float .call-label .main { display: none; }
  .call-float .call-label .sub  { display: none; }
  .call-float { padding: 0.9rem; border-radius: 50%; }
  .call-float svg { width: 28px; height: 28px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 1rem 1.5rem; }
  .process-steps   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
}

/* ── Print Stylesheet ── */
@media print {
  .site-header, .call-float, .back-to-top, .mobile-nav,
  .announcement-bar, .site-footer .footer-social { display: none !important; }
  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
  .hero { background: #f5f5f5 !important; color: #000 !important; padding: 2rem 0; }
  .hero h1, .hero .lead { color: #000 !important; }
}


/* ── Added local SEO / revised branding helpers ── */
.site-logo { display:flex; align-items:center; gap:.75rem; }
.logo-mark { width:56px; height:56px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.hero--small { min-height: 430px; padding: clamp(4rem, 10vw, 7rem) 0; }
.area-card .card-link { font-weight:700; color:var(--color-accent-dark); }
.footer-grid { grid-template-columns: 1.5fr 1.15fr 1.15fr 1.2fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }


/* ── Landlord Package Cards ── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.featured-package {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

.package-label {
  display: inline-flex;
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.25rem 0 0.75rem;
}

.package-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text-light);
  font-size: 0.94rem;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-success);
  font-weight: 800;
}

.service-note {
  max-width: 850px;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}

.cta-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-block .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.cta-block p {
  color: rgba(255,255,255,0.82);
  margin: 1rem auto 1.5rem;
  max-width: 680px;
}

@media (max-width: 767px) {
  .package-card { padding: 1.5rem; }
}

/* Google Business Profile cards */
.google-profile-card {
  border: 2px solid rgba(206, 235, 87, 0.35);
  background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(206,235,87,0.08));
}
.google-profile-card .btn + .btn {
  margin-left: 0.5rem;
}
@media (max-width: 520px) {
  .google-profile-card .btn + .btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ============================================================
   Local tradesman tone refresh — added by ChatGPT
   ============================================================ */
:root {
  --color-accent: #F28A2E;
  --color-accent-dark: #D96D12;
  --color-accent-soft: #FFF0E2;
  --color-lime: #D8F06A;
}

a:hover { color: var(--color-accent); }

.site-header {
  --header-height: 86px;
}

.header-inner {
  min-height: 86px;
}

.site-logo {
  gap: 0.9rem;
}

.site-logo img.logo-mark {
  width: 74px;
  height: 74px;
  border: 3px solid var(--color-accent);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.site-logo .logo-main {
  font-size: 1.28rem;
}

.site-logo .logo-sub {
  color: var(--color-accent);
  font-weight: 600;
}

.btn-accent,
.trust-bar,
.service-card .icon,
.showroom-step .step-num,
.landlord-feature .check,
.review-avatar,
.step-number {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-accent { color: #111; }
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.site-nav a:hover,
.site-nav a.active,
.header-tel:hover,
.mobile-nav a:hover,
.mobile-nav a.active,
.service-card .card-link,
.showroom-content .eyebrow,
.section-header .eyebrow,
.contact-info .eyebrow,
.faq-question:hover,
.faq-question.open {
  color: var(--color-accent);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--color-accent-soft);
}

.site-nav a.active::after {
  background: var(--color-accent);
}

.announcement-bar a {
  color: var(--color-accent);
}

.hero--local::before {
  background: linear-gradient(90deg, rgba(0,0,0,0.80), rgba(0,0,0,0.42)), url('../images/gallery/living-room-carpet-fitting-doncaster.jpg') center/cover no-repeat;
  opacity: 1;
}

.hero .eyebrow {
  background: rgba(242,138,46,0.16);
  border-color: rgba(242,138,46,0.42);
  color: #fff;
}

.hero .lead {
  max-width: 620px;
  line-height: 1.65;
}

.section--roomy {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

p {
  max-width: 68ch;
}

.section-header p {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.tick-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}

.tick-list li {
  position: relative;
  padding-left: 1.7rem;
}

.tick-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 800;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-grid--preview .gallery-img {
  aspect-ratio: 4 / 3;
}

.showroom-section--reverse .showroom-image {
  order: 2;
}

.reviews {
  background: #f7f7f7;
  padding: 3rem 1.5rem;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-grid--simple {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid--simple {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-top: 4px solid var(--color-accent);
}

.review p {
  max-width: none;
}

.reviewer {
  margin-top: 0.75rem;
  font-weight: 600;
  color: #555;
}

.reviews-cta {
  text-align: center;
  margin: 1.5rem auto 0;
  font-weight: 500;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(242,138,46,0.17);
}

.form-group label .required {
  color: var(--color-accent);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.floating-actions a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.floating-call {
  background: var(--color-primary);
  color: #fff;
}

.floating-quote {
  background: var(--color-accent);
  color: #111;
}

.floating-actions a:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--color-accent-dark);
}

@media (max-width: 1024px) {
  .site-header {
    --header-height: 78px;
  }
  .header-inner {
    min-height: 78px;
  }
  .site-logo img.logo-mark {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 768px) {
  .site-logo img.logo-mark {
    width: 58px;
    height: 58px;
  }
  .site-logo .logo-main {
    font-size: 1.05rem;
  }
  .site-logo .logo-sub {
    font-size: 0.62rem;
  }
  .floating-actions {
    left: 1rem;
    right: 1rem;
    flex-direction: row;
  }
  .floating-actions a {
    flex: 1;
  }
}

/* Extra page styling added during full local-tone rewrite */
.content-narrow { max-width: 760px; margin: 0 auto; }
.content-narrow h2, .content-narrow h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.content-narrow p { margin-bottom: 1rem; }
.gallery-filter-bar { display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; margin:0 0 2rem; }
.filter-pill { border:1px solid rgba(0,0,0,.12); background:#fff; color:var(--color-text); padding:.65rem 1rem; border-radius:999px; font-weight:700; cursor:pointer; transition:all var(--transition); }
.filter-pill:hover, .filter-pill.active { background:var(--color-accent); color:#111; border-color:var(--color-accent); }
.gallery-grid--full { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-grid--full .gallery-img { aspect-ratio: 4/3; }
.gallery-grid--full .gallery-img img { width:100%; height:100%; object-fit:cover; }
@media (max-width: 768px) { .gallery-filter-bar { justify-content:flex-start; } }


/* Growth sections: process, case studies, before/after and commercial pages */
.process-grid, .case-grid, .before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.process-step, .case-card, .before-after-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.process-step {
  padding: 1.4rem;
}
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #111;
  font-weight: 800;
  margin-bottom: 1rem;
}
.process-step h3, .case-card h3, .before-after-card h3 {
  margin-bottom: .5rem;
}
.case-card img, .before-after-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.case-card-content, .before-after-card {
  padding: 1.25rem;
}
.case-card-content ul {
  margin: .9rem 0 0;
  padding-left: 1.15rem;
}
.case-card-content li {
  margin-bottom: .35rem;
}
.before-after-card {
  background: #fff;
}
.before-after-card img {
  margin: -1.25rem -1.25rem 1.1rem;
  width: calc(100% + 2.5rem);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.hero--small {
  min-height: 460px;
}
@media (max-width: 768px) {
  .process-grid, .case-grid, .before-after-grid {
    grid-template-columns: 1fr;
  }
  .case-card img, .before-after-card img {
    height: 200px;
  }
}


/* Human touches and movement added to make the site feel less templated */
.shop-floor-banner {
  background: #111;
  color: #fff;
  padding: 1rem 0;
  border-top: 3px solid var(--color-accent);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.shop-floor-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-floor-banner p {
  margin: 0;
  max-width: 820px;
}
.shop-floor-banner strong {
  color: var(--color-accent);
}
.shop-floor-banner a {
  color: #111;
  background: var(--color-accent);
  padding: .65rem .95rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.pin-dot {
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,145,0,.18);
  flex: 0 0 auto;
}
.rob-note-card {
  background: #fff8ec;
  border-left: 5px solid var(--color-accent);
  padding: 1rem 1.1rem;
  border-radius: 12px;
  margin: 1.25rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: rotate(-.35deg);
}
.rob-note-card span {
  display: inline-block;
  font-weight: 800;
  color: #111;
  margin-bottom: .35rem;
}
.rob-note-card p {
  margin: 0;
}
.work-scroll-section {
  background: #fff;
  padding: 3rem 0 2.25rem;
  overflow: hidden;
}
.work-scroll-heading {
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 760px;
  padding: 0 1.5rem;
}
.work-scroll-heading h2 {
  margin: .35rem 0 0;
}
.work-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.work-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: rd-marquee 42s linear infinite;
}
.work-marquee:hover .work-marquee__track {
  animation-play-state: paused;
}
.work-marquee img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  border: 4px solid #fff;
}
@keyframes rd-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.package-highlight {
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 1.2rem 0;
  border-left: 5px solid var(--color-accent);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.package-highlight strong {
  color: var(--color-accent);
}
.package-note-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  display: inline-grid;
  gap: .45rem;
  text-align: left;
}
.package-note-list li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 800;
  margin-right: .5rem;
}
@media (prefers-reduced-motion: reduce) {
  .work-marquee__track { animation: none; }
}
@media (max-width: 768px) {
  .shop-floor-banner__inner { align-items: flex-start; }
  .shop-floor-banner a { width: 100%; text-align: center; }
  .work-marquee img { width: 210px; height: 145px; }
  .rob-note-card { transform: none; }
}


/* Final human polish and real-photo sections */
.work-scroll-heading p {
  max-width: 680px;
  margin: .4rem auto 0;
  color: var(--color-text-light);
  text-align: center;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.ba-pair figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.ba-pair img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.ba-pair figcaption {
  position: absolute;
  left: .6rem;
  bottom: .6rem;
  background: rgba(20,20,20,.76);
  color: #fff;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}
.before-after-card--split {
  grid-column: span 2;
}
.section--personal {
  background: linear-gradient(135deg, #fff, #f7f2ec);
}
.proper-job-card {
  border: 1px solid rgba(0,0,0,.08);
  border-left: 8px solid var(--color-accent);
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.proper-job-card h2 {
  margin: .35rem 0 0;
}
.proper-job-copy p:last-child {
  margin-bottom: 0;
}
.shop-floor-banner__inner {
  border: 1px solid rgba(242, 111, 33, .25);
}
.gallery-item:hover .gallery-caption {
  color: var(--color-accent-dark);
}
@media (max-width: 820px) {
  .proper-job-card { grid-template-columns: 1fr; }
  .before-after-card--split { grid-column: span 1; }
  .ba-pair { grid-template-columns: 1fr; }
  .ba-pair img { height: 230px; }
}

/* ============================================================
   FINAL POLISH — orange accents, larger logo, cleaner flow
   ============================================================ */
:root {
  --color-accent: #E86A2C;
  --color-accent-dark: #BE4D19;
  --color-lime: #D8F06A;
  --color-orange-soft: #FFF0E8;
  --color-section: #FAFAF8;
  --header-height: 86px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(232,106,44,0.035), transparent 360px),
    var(--color-bg);
}

.site-header {
  border-bottom: 1px solid rgba(232,106,44,0.18);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.header-inner { gap: 1.25rem; }

.site-logo {
  padding: 0.35rem 0;
  gap: 0.85rem;
  min-width: max-content;
}

.site-logo img.logo-mark,
.logo-mark {
  width: 72px;
  height: 72px;
  border: 3px solid rgba(232,106,44,0.28);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.site-logo .logo-main {
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.site-logo .logo-sub {
  color: var(--color-accent-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.075em;
}

.footer-brand .site-logo img.logo-mark { width: 76px; height: 76px; }

.btn-accent,
.shop-floor-banner a,
.floating-quote {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(232,106,44,0.22);
}

.btn-accent:hover,
.shop-floor-banner a:hover,
.floating-quote:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn-outline:hover,
.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(232,106,44,0.16);
}

.btn-outline {
  border-color: rgba(232,106,44,0.75);
}

.btn-outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.announcement-bar {
  border-bottom: 3px solid var(--color-accent);
}

.announcement-bar a,
.header-tel:hover,
.site-nav a:hover,
.site-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active,
.card-link,
.area-card .card-link,
.reviewer,
.footer-col a:hover,
.footer-brand a:hover {
  color: var(--color-accent-dark);
}

.site-nav a:hover,
.site-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--color-orange-soft);
}

.site-nav a.active::after,
.divider,
.section-header h2::after,
.page-hero h1::after {
  background: var(--color-accent);
}

.section-header h2::after,
.page-hero h1::after {
  content: '';
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  margin: 0.9rem auto 0;
}

.page-hero h1::after { margin-left: 0; }

.section--roomy,
.section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section--grey {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0)),
    var(--color-section);
  border-top: 1px solid rgba(0,0,0,0.045);
  border-bottom: 1px solid rgba(0,0,0,0.045);
}

.section--personal,
.reviews {
  background: linear-gradient(135deg, #fff, var(--color-orange-soft));
}

.service-card,
.why-card,
.review,
.case-card,
.before-after-card,
.area-card,
.contact-detail,
.quote-form,
.showroom-image,
.gallery-item,
.proper-job-card {
  box-shadow: 0 14px 34px rgba(0,0,0,0.07);
}

.service-card,
.why-card,
.review,
.case-card,
.before-after-card,
.area-card,
.gallery-item {
  border-color: rgba(232,106,44,0.12);
}

.service-card:hover,
.why-card:hover,
.gallery-item:hover,
.area-card:hover,
.case-card:hover,
.before-after-card:hover {
  border-color: rgba(232,106,44,0.45);
  box-shadow: 0 18px 42px rgba(0,0,0,0.11);
}

.service-card .icon,
.why-card .icon,
.contact-detail .icon,
.package-note-list li::before,
.tick-list li::before,
.landlord-feature .check,
.check {
  background: var(--color-orange-soft);
  color: var(--color-accent-dark);
  border-color: rgba(232,106,44,0.2);
}

.tick-list li::before,
.package-note-list li::before {
  background: none;
  color: var(--color-accent);
}

.eyebrow,
.section-header .eyebrow,
.hero .eyebrow {
  color: var(--color-accent-dark);
}

.hero .eyebrow {
  background: rgba(232,106,44,0.17);
  border-color: rgba(232,106,44,0.42);
  color: #FFD8C4;
}

.trust-bar {
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
}

.trust-item { color: #fff; }

.shop-floor-banner {
  border-top-color: var(--color-accent);
}

.shop-floor-banner strong,
.package-highlight strong {
  color: #FFB385;
}

.pin-dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(232,106,44,.18);
}

.rob-note-card,
.package-highlight,
.proper-job-card {
  border-left-color: var(--color-accent);
}

.work-marquee img {
  border-color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.16), 0 0 0 1px rgba(232,106,44,0.10);
}

.map-container {
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
  border: 3px solid rgba(232,106,44,0.16);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(232,106,44,0.14);
}

.required,
.form-note a { color: var(--color-accent-dark); }

.back-to-top,
.call-float,
.floating-call {
  background: var(--color-primary);
  border: 1px solid rgba(232,106,44,0.32);
}

.back-to-top:hover,
.call-float:hover,
.floating-call:hover {
  background: var(--color-accent);
  color: #fff;
}

.gallery-caption {
  border-top: 3px solid rgba(232,106,44,0.18);
}

@media (max-width: 1150px) {
  :root { --header-height: 82px; }
  .site-logo img.logo-mark,
  .logo-mark { width: 66px; height: 66px; }
  .site-logo .logo-main { font-size: 1.18rem; }
  .site-logo .logo-sub { font-size: 0.66rem; }
  .site-nav a { padding-left: 0.55rem; padding-right: 0.55rem; font-size: 0.82rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 78px; }
  .site-logo { gap: 0.7rem; }
  .site-logo img.logo-mark,
  .logo-mark { width: 62px; height: 62px; }
  .site-logo .logo-main { font-size: 1.12rem; }
  .site-logo .logo-sub { font-size: 0.62rem; max-width: 150px; }
  .header-inner { gap: 0.75rem; }
  .header-tel { display: none; }
  .section--roomy,
  .section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

@media (max-width: 420px) {
  .site-logo .logo-main { font-size: 1rem; }
  .site-logo .logo-sub { font-size: 0.58rem; max-width: 126px; }
  .site-logo img.logo-mark,
  .logo-mark { width: 58px; height: 58px; }
}


/* Final small logo alignment polish: keeps the same layout, but lifts the round logo slightly so it sits better in the header. */
.site-logo img.logo-mark,
.logo-mark {
  object-position: center center;
  transform: translateY(-2px);
}
.site-header .site-logo {
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .site-logo img.logo-mark,
  .logo-mark { transform: translateY(-1px); }
}
