/*
Theme Name: Distinctive Plant Hire
Theme URI: https://www.distinctiveplanthire.co.uk
Author: Welch Marketing Ltd
Author URI: https://www.welchmarketing.co.uk
Description: Premium custom WordPress theme for Distinctive Plant Hire Ltd — a hire-first, booking-led, GHL-ready plant and tool hire platform for Kent. Includes custom post types for hire items and locations, product booking forms, location SEO pages, and full schema support.
Version: 1.8.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dph
*/

/* =========================================================
   DESIGN TOKENS — Distinctive Plant Hire brand system
   ========================================================= */
:root {
  --dph-blue: #0B3D91;
  --dph-blue-dark: #072B66;
  --dph-blue-light: #1E5BC6;
  --dph-orange: #FF7A00;
  --dph-orange-dark: #E56A00;
  --dph-orange-light: #FFB266;
  --dph-white: #FFFFFF;
  --dph-ink: #101828;
  --dph-grey-900: #1D2939;
  --dph-grey-700: #475467;
  --dph-grey-500: #98A2B3;
  --dph-grey-300: #D0D5DD;
  --dph-grey-200: #E4E7EC;
  --dph-grey-100: #F2F4F7;
  --dph-bg: #F7F8FA;

  --dph-font-heading: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --dph-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --dph-radius-sm: 6px;
  --dph-radius: 10px;
  --dph-radius-lg: 18px;
  --dph-radius-xl: 24px;

  --dph-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --dph-shadow: 0 4px 12px rgba(16, 24, 40, 0.08), 0 2px 4px rgba(16, 24, 40, 0.04);
  --dph-shadow-lg: 0 20px 40px rgba(16, 24, 40, 0.12), 0 8px 16px rgba(16, 24, 40, 0.06);
  --dph-shadow-orange: 0 8px 24px rgba(255, 122, 0, 0.28);

  --dph-max: 1240px;
  --dph-gutter: clamp(16px, 4vw, 32px);

  --dph-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--dph-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dph-ink);
  background: var(--dph-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--dph-blue); text-decoration: none; transition: color .2s var(--dph-ease); }
a:hover { color: var(--dph-orange); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--dph-font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dph-ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.dph-container { max-width: var(--dph-max); margin: 0 auto; padding: 0 var(--dph-gutter); }
.dph-section { padding: clamp(48px, 8vw, 96px) 0; }
.dph-section--tight { padding: clamp(32px, 5vw, 56px) 0; }
.dph-section--blue { background: var(--dph-blue); color: var(--dph-white); }
.dph-section--blue h1, .dph-section--blue h2, .dph-section--blue h3 { color: var(--dph-white); }
.dph-section--grey { background: var(--dph-bg); }
.dph-section--orange { background: var(--dph-orange); color: var(--dph-white); }
.dph-section--orange h1, .dph-section--orange h2 { color: var(--dph-white); }

.dph-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dph-orange);
  margin-bottom: 14px;
}
.dph-section--blue .dph-eyebrow { color: var(--dph-orange-light); }

.dph-grid { display: grid; gap: 24px; }
.dph-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.dph-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.dph-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* =========================================================
   BUTTONS
   ========================================================= */
.dph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--dph-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--dph-radius);
  transition: all .25s var(--dph-ease);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.dph-btn--primary {
  background: var(--dph-orange);
  color: var(--dph-white);
  box-shadow: var(--dph-shadow-orange);
}
.dph-btn--primary:hover {
  background: var(--dph-orange-dark);
  color: var(--dph-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.38);
}
.dph-btn--secondary {
  background: var(--dph-blue);
  color: var(--dph-white);
}
.dph-btn--secondary:hover { background: var(--dph-blue-dark); color: var(--dph-white); transform: translateY(-2px); }
.dph-btn--ghost {
  background: transparent;
  color: var(--dph-ink);
  border-color: var(--dph-grey-300);
}
.dph-btn--ghost:hover { border-color: var(--dph-orange); color: var(--dph-orange); }
.dph-btn--ghost-light {
  background: transparent;
  color: var(--dph-white);
  border-color: rgba(255,255,255,.4);
}
.dph-btn--ghost-light:hover { background: var(--dph-white); color: var(--dph-blue); }
.dph-btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.dph-btn--block { width: 100%; }
.dph-btn svg { width: 18px; height: 18px; }

/* =========================================================
   HEADER / NAV — white background, dark text, for the blue logo
   ========================================================= */
.dph-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dph-white);
  border-bottom: 1px solid var(--dph-grey-200);
  transition: box-shadow .3s var(--dph-ease);
}
.dph-header.is-scrolled {
  box-shadow: var(--dph-shadow);
}
.dph-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.dph-logo { display: flex; align-items: center; gap: 10px; font-family: var(--dph-font-heading); font-weight: 800; color: var(--dph-blue); font-size: 1.15rem; letter-spacing: -0.02em; }
.dph-logo img { height: 56px; width: auto; display: block; max-width: 200px; object-fit: contain; }
@media (max-width: 600px) {
  .dph-logo img { height: 44px; max-width: 160px; }
}
.dph-logo__text { display: flex; flex-direction: column; line-height: 1.1; color: var(--dph-blue); }
.dph-logo__text small { font-size: 0.7rem; color: var(--dph-orange); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.dph-nav { display: flex; align-items: center; gap: 28px; }
.dph-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.dph-nav a {
  color: var(--dph-ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}
.dph-nav a:hover { color: var(--dph-orange); }
.dph-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--dph-orange);
  transition: width .25s var(--dph-ease);
}
.dph-nav a:hover::after, .dph-nav .current-menu-item a::after { width: 100%; }

.dph-header__cta { display: flex; align-items: center; gap: 12px; }
.dph-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dph-ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.dph-header__phone svg { width: 18px; height: 18px; color: var(--dph-orange); }
.dph-header__phone:hover { color: var(--dph-orange); }

/* Mobile nav toggle */
.dph-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--dph-radius-sm);
  background: var(--dph-grey-100);
  position: relative;
}
.dph-nav-toggle:hover { background: var(--dph-grey-200); }
.dph-nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--dph-ink);
  transition: all .25s var(--dph-ease);
}
.dph-nav-toggle span:nth-child(1) { top: 15px; }
.dph-nav-toggle span:nth-child(2) { top: 21px; }
.dph-nav-toggle span:nth-child(3) { top: 27px; }
.dph-nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.dph-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.dph-nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .dph-nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--dph-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px var(--dph-gutter);
    box-shadow: var(--dph-shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--dph-ease);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .dph-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .dph-nav ul { flex-direction: column; gap: 0; }
  .dph-nav ul li { border-bottom: 1px solid var(--dph-grey-200); }
  .dph-nav ul li:last-child { border: 0; }
  .dph-nav a { display: block; padding: 16px 0; font-size: 1.05rem; color: var(--dph-ink); }
  .dph-nav a:hover { color: var(--dph-orange); }
  .dph-nav-toggle { display: block; }
  .dph-header__phone span { display: none; }
  .dph-header__cta .dph-btn { padding: 10px 18px; font-size: 0.85rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.dph-hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0;
  background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%);
  color: var(--dph-white);
  overflow: hidden;
}
.dph-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.dph-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dph-hero h1 { color: var(--dph-white); }
.dph-hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 32px;
}
.dph-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.dph-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
}
.dph-hero__trust strong { color: var(--dph-white); font-weight: 700; }
.dph-hero__image {
  position: relative;
  border-radius: var(--dph-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--dph-shadow-lg);
}
.dph-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.dph-hero__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--dph-orange);
  color: var(--dph-white);
  padding: 14px 20px;
  border-radius: var(--dph-radius);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--dph-shadow);
}
@media (max-width: 860px) {
  .dph-hero__grid { grid-template-columns: 1fr; }
  .dph-hero__image { aspect-ratio: 16/10; max-height: 360px; }
}

/* =========================================================
   STARS
   ========================================================= */
.dph-stars { display: inline-flex; gap: 2px; color: var(--dph-orange); }
.dph-stars svg { width: 16px; height: 16px; }

/* =========================================================
   CATEGORY TILES
   ========================================================= */
.dph-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .dph-cat-grid { grid-template-columns: 1fr; } }

.dph-cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--dph-radius-lg);
  overflow: hidden;
  color: var(--dph-white);
  text-decoration: none;
  background: var(--dph-blue);
}
.dph-cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--dph-ease);
}
.dph-cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,43,102,0.2) 0%, rgba(7,43,102,0.85) 100%);
}
.dph-cat-tile__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.dph-cat-tile__body h3 { color: var(--dph-white); margin-bottom: 6px; }
.dph-cat-tile__body p { color: rgba(255,255,255,.85); margin: 0 0 16px; font-size: 0.95rem; }
.dph-cat-tile__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dph-orange-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap .25s var(--dph-ease);
}
.dph-cat-tile:hover img { transform: scale(1.06); }
.dph-cat-tile:hover .dph-cat-tile__arrow { gap: 14px; color: var(--dph-white); }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.dph-prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .dph-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dph-prod-grid { grid-template-columns: 1fr; } }

.dph-prod {
  background: var(--dph-white);
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  overflow: hidden;
  transition: all .3s var(--dph-ease);
  display: flex;
  flex-direction: column;
}
.dph-prod:hover {
  transform: translateY(-4px);
  box-shadow: var(--dph-shadow-lg);
  border-color: var(--dph-grey-300);
}
.dph-prod__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dph-grey-100);
  position: relative;
}
.dph-prod__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--dph-ease); }
.dph-prod:hover .dph-prod__img img { transform: scale(1.04); }
.dph-prod__weight {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--dph-orange);
  color: var(--dph-white);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dph-prod__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.dph-prod__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dph-grey-700);
  margin-bottom: 6px;
}
.dph-prod__title { font-size: 1.2rem; margin: 0 0 10px; }
.dph-prod__title a { color: var(--dph-ink); }
.dph-prod__title a:hover { color: var(--dph-orange); }
.dph-prod__desc { font-size: 0.9rem; color: var(--dph-grey-700); margin-bottom: 16px; flex: 1; }
.dph-prod__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.dph-prod__specs span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--dph-grey-100);
  border-radius: 999px;
  color: var(--dph-grey-900);
  font-weight: 600;
}
.dph-prod__cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dph-prod__price { font-family: var(--dph-font-heading); font-weight: 800; color: var(--dph-blue); }
.dph-prod__price small { font-weight: 500; color: var(--dph-grey-700); font-size: 0.8rem; }

/* =========================================================
   WHY US / 4-COL
   ========================================================= */
.dph-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) { .dph-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dph-why { grid-template-columns: 1fr; } }
.dph-why__card {
  padding: 32px 24px;
  background: var(--dph-white);
  border-radius: var(--dph-radius-lg);
  border: 1px solid var(--dph-grey-200);
}
.dph-why__icon {
  width: 56px; height: 56px;
  border-radius: var(--dph-radius);
  background: rgba(255, 122, 0, 0.1);
  color: var(--dph-orange);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.dph-why__icon svg { width: 28px; height: 28px; }
.dph-why__card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.dph-why__card p { color: var(--dph-grey-700); font-size: 0.95rem; margin: 0; }

/* =========================================================
   HOW IT WORKS — 4 STEPS
   ========================================================= */
.dph-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 860px) { .dph-steps { grid-template-columns: 1fr; } }
.dph-steps__item { position: relative; }
.dph-steps__num {
  font-family: var(--dph-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dph-orange);
  line-height: 1;
  margin-bottom: 16px;
}
.dph-steps__item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.dph-steps__item p { color: var(--dph-grey-700); margin: 0; }

/* =========================================================
   CTA STRIP (orange)
   ========================================================= */
.dph-cta-strip { background: var(--dph-orange); color: var(--dph-white); padding: 40px 0; }
.dph-cta-strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.dph-cta-strip h2 { color: var(--dph-white); margin: 0; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.dph-cta-strip p { color: rgba(255,255,255,.9); margin: 4px 0 0; }
.dph-cta-strip .dph-btn--primary { background: var(--dph-white); color: var(--dph-orange); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.dph-cta-strip .dph-btn--primary:hover { background: var(--dph-ink); color: var(--dph-white); }

/* =========================================================
   AREAS COVERED
   ========================================================= */
.dph-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .dph-areas { grid-template-columns: 1fr; } }
.dph-areas__map {
  background: var(--dph-blue);
  border-radius: var(--dph-radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: var(--dph-white);
  background-image: radial-gradient(circle at 30% 40%, rgba(255,122,0,0.25) 0%, transparent 50%);
}
.dph-postcode {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--dph-grey-300);
  border-radius: var(--dph-radius);
  background: var(--dph-white);
  margin-bottom: 24px;
}
.dph-postcode input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.dph-postcode__result { margin-top: 12px; font-size: 0.9rem; min-height: 1.4em; }
.dph-postcode__result.is-yes { color: #047857; font-weight: 600; }
.dph-postcode__result.is-no  { color: #B91C1C; font-weight: 600; }

/* When postcode result is on a dark hero, brighten the success/error states */
.dph-page-header .dph-postcode__result.is-yes { color: #6EE7B7; }
.dph-page-header .dph-postcode__result.is-no  { color: #FCA5A5; }

.dph-towns {
  columns: 2;
  column-gap: 32px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
}
.dph-towns a {
  display: block;
  padding: 8px 0;
  color: var(--dph-ink);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--dph-grey-200);
  break-inside: avoid;
}
.dph-towns a:hover { color: var(--dph-orange); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.dph-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .dph-testi-grid { grid-template-columns: 1fr; } }
.dph-testi {
  background: var(--dph-white);
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  padding: 28px;
}
.dph-testi p { font-size: 1rem; color: var(--dph-grey-900); margin: 12px 0 20px; line-height: 1.6; }
.dph-testi__author { display: flex; flex-direction: column; }
.dph-testi__author strong { color: var(--dph-ink); font-weight: 700; }
.dph-testi__author small { color: var(--dph-grey-700); }

/* =========================================================
   FAQ
   ========================================================= */
.dph-faq { max-width: 820px; margin: 0 auto; }
.dph-faq__item {
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius);
  margin-bottom: 12px;
  background: var(--dph-white);
  overflow: hidden;
}
.dph-faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--dph-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dph-ink);
}
.dph-faq__q::after {
  content: '+';
  color: var(--dph-orange);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .25s var(--dph-ease);
}
.dph-faq__item.is-open .dph-faq__q::after { transform: rotate(45deg); }
.dph-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--dph-ease);
}
.dph-faq__a-inner { padding: 0 24px 20px; color: var(--dph-grey-700); }
.dph-faq__item.is-open .dph-faq__a { max-height: 400px; }

/* =========================================================
   CONTACT PAGE — channel cards, form+sidebar split, map
   ========================================================= */

/* Contact channel cards */
.dph-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.dph-contact-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--dph-white);
  border: 2px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  text-decoration: none;
  color: var(--dph-ink);
  transition: all .3s var(--dph-ease);
  position: relative;
  overflow: hidden;
}
.dph-contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--dph-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--dph-ease);
}
.dph-contact-card:hover {
  border-color: var(--dph-orange);
  transform: translateY(-4px);
  box-shadow: var(--dph-shadow-lg);
  color: var(--dph-ink);
}
.dph-contact-card:hover::before { transform: scaleX(1); }

.dph-contact-card--primary {
  background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%);
  border-color: var(--dph-blue);
  color: var(--dph-white);
}
.dph-contact-card--primary:hover { color: var(--dph-white); border-color: var(--dph-orange); }
.dph-contact-card--primary .dph-contact-card__icon {
  background: rgba(255,122,0,0.2);
  color: var(--dph-orange-light);
}
.dph-contact-card--primary p { color: rgba(255,255,255,0.85); }
.dph-contact-card--primary .dph-contact-card__cta { color: var(--dph-orange-light); }

.dph-contact-card--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #25D366;
  color: var(--dph-white);
}
.dph-contact-card--wa:hover { color: var(--dph-white); border-color: #fff; }
.dph-contact-card--wa .dph-contact-card__icon {
  background: rgba(255,255,255,0.18);
  color: var(--dph-white);
}
.dph-contact-card--wa p { color: rgba(255,255,255,0.9); }
.dph-contact-card--wa .dph-contact-card__cta { color: var(--dph-white); }

.dph-contact-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--dph-radius);
  background: rgba(11, 61, 145, 0.08);
  color: var(--dph-blue);
  display: grid; place-items: center;
  margin-bottom: 20px;
}

.dph-contact-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: inherit;
}
.dph-contact-card__value {
  font-family: var(--dph-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.dph-contact-card p {
  font-size: 0.9rem;
  color: var(--dph-grey-700);
  margin: 0 0 16px;
  flex: 1;
}
.dph-contact-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dph-orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap .25s var(--dph-ease);
}
.dph-contact-card:hover .dph-contact-card__cta { gap: 12px; }

/* Form + sidebar split */
.dph-contact-split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
}
@media (max-width: 960px) { .dph-contact-split { grid-template-columns: 1fr; } }

.dph-contact-form-wrap {
  background: var(--dph-white);
  border-radius: var(--dph-radius-lg);
  padding: 40px;
  box-shadow: var(--dph-shadow);
}
@media (max-width: 600px) { .dph-contact-form-wrap { padding: 28px 20px; } }

.dph-contact-form .dph-field textarea { min-height: 120px; }

/* Sidebar cards */
.dph-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dph-sidebar-card {
  background: var(--dph-white);
  border-radius: var(--dph-radius-lg);
  padding: 28px;
  box-shadow: var(--dph-shadow);
}
.dph-sidebar-card--dark {
  background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%);
  color: var(--dph-white);
}

.dph-sidebar-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--dph-grey-100);
}
.dph-sidebar-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--dph-radius-sm);
  background: rgba(255, 122, 0, 0.12);
  color: var(--dph-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dph-sidebar-card__header h3 {
  font-size: 1.15rem;
  margin: 0;
}

.dph-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.dph-hours-table tr {
  border-bottom: 1px solid var(--dph-grey-100);
}
.dph-hours-table tr:last-child { border-bottom: 0; }
.dph-hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}
.dph-hours-table td:first-child {
  color: var(--dph-grey-700);
  font-weight: 500;
}
.dph-hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--dph-ink);
  font-variant-numeric: tabular-nums;
}
.dph-hours-table tr.is-closed td:last-child {
  color: var(--dph-grey-500);
  font-weight: 500;
}

.dph-sidebar-card__note {
  padding: 12px 14px;
  background: rgba(255, 122, 0, 0.08);
  border-left: 3px solid var(--dph-orange);
  border-radius: 0 var(--dph-radius-sm) var(--dph-radius-sm) 0;
  font-size: 0.85rem;
  color: var(--dph-grey-900);
  margin: 0;
}

.dph-sidebar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--dph-orange);
  font-weight: 700;
  font-size: 0.9rem;
}
.dph-sidebar-card__link:hover { color: var(--dph-orange-dark); }

.dph-sidebar-socials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.dph-sidebar-socials a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--dph-radius-sm);
  color: var(--dph-white);
  font-weight: 600;
  transition: all .25s var(--dph-ease);
}
.dph-sidebar-socials a:hover {
  background: var(--dph-orange);
  color: var(--dph-white);
  transform: translateX(4px);
}
.dph-sidebar-socials svg { flex-shrink: 0; }

/* Embedded map */
.dph-map-section {
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.dph-map-wrap {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 -8px 30px rgba(16, 24, 40, 0.08);
}
.dph-map-wrap iframe {
  filter: grayscale(20%) contrast(1.05);
  transition: filter .4s var(--dph-ease);
}
.dph-map-wrap:hover iframe { filter: grayscale(0%) contrast(1); }

/* =========================================================
   AREAS COVERED PAGE — map, region cards, town grid
   ========================================================= */

/* Hero postcode form (large inline) */
.dph-hero-postcode {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--dph-radius);
  backdrop-filter: blur(8px);
}
.dph-hero-postcode input {
  flex: 1;
  border: 0;
  background: var(--dph-white);
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--dph-radius-sm);
  outline: none;
  color: var(--dph-ink);
}
.dph-hero-postcode input::placeholder { color: var(--dph-grey-500); }
.dph-hero-postcode .dph-btn { padding: 14px 24px; }

/* Map + info split */
.dph-areas-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) { .dph-areas-split { grid-template-columns: 1fr; } }

.dph-areas-split__map {
  border-radius: var(--dph-radius-xl);
  overflow: hidden;
  box-shadow: var(--dph-shadow-lg);
}
.dph-kent-map {
  width: 100%;
  height: auto;
  display: block;
}

.dph-areas-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--dph-grey-200);
  border-bottom: 1px solid var(--dph-grey-200);
}
.dph-areas-stat {
  text-align: center;
}
.dph-areas-stat strong {
  display: block;
  font-family: var(--dph-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dph-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.dph-areas-stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--dph-grey-700);
  margin-top: 6px;
}

/* Kent-wide catch-all cards */
.dph-areas-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.dph-areas-wide__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--dph-white);
  border: 2px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  text-decoration: none;
  color: var(--dph-ink);
  transition: all .3s var(--dph-ease);
}
.dph-areas-wide__card:hover {
  border-color: var(--dph-orange);
  box-shadow: var(--dph-shadow-lg);
  transform: translateY(-3px);
  color: var(--dph-ink);
}
.dph-areas-wide__icon {
  width: 56px; height: 56px;
  border-radius: var(--dph-radius);
  background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%);
  color: var(--dph-white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dph-areas-wide__body { flex: 1; }
.dph-areas-wide__body h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.dph-areas-wide__body p {
  margin: 0;
  color: var(--dph-grey-700);
  font-size: 0.9rem;
}
.dph-areas-wide__arrow {
  color: var(--dph-orange);
  transition: transform .3s var(--dph-ease);
}
.dph-areas-wide__card:hover .dph-areas-wide__arrow { transform: translateX(6px); }

/* Regional groupings */
.dph-region {
  background: var(--dph-white);
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  transition: box-shadow .3s var(--dph-ease);
}
.dph-region:hover {
  box-shadow: var(--dph-shadow);
}
.dph-region__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dph-grey-100);
}
.dph-region__icon {
  width: 52px; height: 52px;
  border-radius: var(--dph-radius);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--dph-white);
}
.dph-region__icon--blue { background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%); }
.dph-region__icon--orange { background: linear-gradient(135deg, var(--dph-orange) 0%, var(--dph-orange-dark) 100%); }
.dph-region__header h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
}
.dph-region__header p {
  margin: 0;
  color: var(--dph-grey-700);
  font-size: 0.95rem;
}

.dph-region__towns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.dph-town-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: var(--dph-grey-100);
  border: 1px solid transparent;
  border-radius: var(--dph-radius);
  text-decoration: none;
  color: var(--dph-ink);
  transition: all .25s var(--dph-ease);
  position: relative;
}
.dph-town-card:hover {
  background: var(--dph-white);
  border-color: var(--dph-orange);
  color: var(--dph-ink);
  transform: translateY(-2px);
  box-shadow: var(--dph-shadow);
}
.dph-town-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.dph-town-card h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}
.dph-town-card__pc {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--dph-blue);
  color: var(--dph-white);
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.dph-town-card__lead {
  font-size: 0.8rem;
  color: var(--dph-grey-700);
  margin: 0;
}
.dph-town-card__arrow {
  position: absolute;
  top: 18px; right: 16px;
  color: var(--dph-grey-500);
  opacity: 0;
  transition: all .25s var(--dph-ease);
}
.dph-town-card:hover .dph-town-card__arrow {
  opacity: 1;
  color: var(--dph-orange);
  transform: translateX(4px);
}

/* =========================================================
   HOW TO HIRE — step cards + checklist grid
   ========================================================= */
.dph-steps-big {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
@media (min-width: 1100px) {
  .dph-steps-big { grid-template-columns: repeat(3, 1fr); }
  .dph-steps-big .dph-step-big:nth-child(4),
  .dph-steps-big .dph-step-big:nth-child(5) {
    grid-column: span 1;
  }
  .dph-steps-big .dph-step-big:nth-child(4) { grid-column: 1 / span 1; grid-column-start: 1; }
}

.dph-step-big {
  background: var(--dph-white);
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .3s var(--dph-ease);
  overflow: hidden;
}
.dph-step-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dph-orange) 0%, var(--dph-orange-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--dph-ease);
}
.dph-step-big:hover {
  border-color: var(--dph-orange-light);
  box-shadow: var(--dph-shadow-lg);
  transform: translateY(-4px);
}
.dph-step-big:hover::before { transform: scaleX(1); }

.dph-step-big__num {
  font-family: var(--dph-font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dph-orange);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.25;
  position: absolute;
  top: 20px; right: 24px;
}
.dph-step-big__icon {
  width: 56px; height: 56px;
  border-radius: var(--dph-radius);
  background: rgba(11, 61, 145, 0.08);
  color: var(--dph-blue);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.dph-step-big h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.dph-step-big p {
  color: var(--dph-grey-700);
  margin-bottom: 16px;
}
.dph-step-big p a { color: var(--dph-orange); font-weight: 600; }
.dph-step-big p a:hover { text-decoration: underline; }

.dph-step-big__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.dph-step-big__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dph-blue);
  padding: 6px 14px;
  background: var(--dph-grey-100);
  border-radius: 999px;
  transition: all .2s var(--dph-ease);
}
.dph-step-big__links a:hover {
  background: var(--dph-orange);
  color: var(--dph-white);
}

.dph-step-big__tip {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255, 122, 0, 0.08);
  border-left: 3px solid var(--dph-orange);
  border-radius: 0 var(--dph-radius-sm) var(--dph-radius-sm) 0;
  font-size: 0.9rem;
  color: var(--dph-grey-900);
}
.dph-step-big__tip strong { color: var(--dph-orange-dark); }

/* Checklist grid */
.dph-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.dph-checklist__item {
  background: var(--dph-white);
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  padding: 28px 24px;
  transition: all .3s var(--dph-ease);
}
.dph-checklist__item:hover {
  border-color: var(--dph-blue-light);
  box-shadow: var(--dph-shadow);
  transform: translateY(-3px);
}
.dph-checklist__icon {
  width: 52px; height: 52px;
  border-radius: var(--dph-radius);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.dph-checklist__icon--blue {
  background: rgba(11, 61, 145, 0.1);
  color: var(--dph-blue);
}
.dph-checklist__icon--orange {
  background: rgba(255, 122, 0, 0.12);
  color: var(--dph-orange);
}
.dph-checklist__item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.dph-checklist__item p {
  color: var(--dph-grey-700);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.dph-checklist__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dph-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dph-checklist__link:hover { text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.dph-footer { background: var(--dph-blue-dark); color: rgba(255,255,255,.8); padding: 64px 0 24px; }
.dph-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 860px) { .dph-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .dph-footer__grid { grid-template-columns: 1fr; } }
.dph-footer h4 {
  color: var(--dph-white);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.dph-footer ul { list-style: none; margin: 0; padding: 0; }
.dph-footer li { margin-bottom: 10px; }
.dph-footer a { color: rgba(255,255,255,.75); font-size: 0.95rem; }
.dph-footer a:hover { color: var(--dph-orange); }
.dph-footer__brand h3 { color: var(--dph-white); margin: 0 0 12px; font-size: 1.4rem; }
.dph-footer__brand p { font-size: 0.95rem; max-width: 300px; margin-bottom: 20px; }
.dph-footer__social { display: flex; gap: 10px; }
.dph-footer__social a {
  width: 40px; height: 40px;
  border-radius: var(--dph-radius-sm);
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
}
.dph-footer__social a:hover { background: var(--dph-orange); }
.dph-footer__social svg { width: 18px; height: 18px; color: var(--dph-white); }
.dph-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}

/* =========================================================
   STICKY MOBILE CTA BAR
   ========================================================= */
.dph-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--dph-white);
  border-top: 1px solid var(--dph-grey-200);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  gap: 8px;
}
.dph-mobile-cta .dph-btn { flex: 1; padding: 14px; font-size: 0.9rem; }
.dph-mobile-cta__call {
  background: var(--dph-blue);
  color: var(--dph-white);
  border-radius: var(--dph-radius);
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; flex-shrink: 0;
}
.dph-mobile-cta__call svg { width: 20px; height: 20px; }
@media (max-width: 860px) { .dph-mobile-cta { display: flex; } body { padding-bottom: 76px; } }

/* =========================================================
   PAGE HEADER (non-home)
   ========================================================= */
.dph-page-header {
  background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%);
  color: var(--dph-white);
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.dph-page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,122,0,0.18) 0%, transparent 70%);
}
.dph-page-header h1 { color: var(--dph-white); margin: 0 0 12px; position: relative; }
.dph-page-header p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 720px; margin: 0; position: relative; }

.dph-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  position: relative;
}
.dph-breadcrumb a { color: rgba(255,255,255,.9); }
.dph-breadcrumb a:hover { color: var(--dph-orange-light); }
.dph-breadcrumb__sep { margin: 0 8px; color: rgba(255,255,255,.4); }

/* =========================================================
   PRODUCT (single hire item) PAGE
   ========================================================= */
.dph-product {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) { .dph-product { grid-template-columns: 1fr; } }

.dph-product__gallery { position: relative; }
.dph-product__gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--dph-radius-lg);
  overflow: hidden;
  background: var(--dph-grey-100);
  margin-bottom: 14px;
}
.dph-product__gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.dph-product__gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.dph-product__gallery-thumbs button {
  aspect-ratio: 1;
  border-radius: var(--dph-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
}
.dph-product__gallery-thumbs button.is-active { border-color: var(--dph-orange); }
.dph-product__gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.dph-product__meta { margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.dph-product__meta span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--dph-grey-100);
  color: var(--dph-grey-700);
}
.dph-product__meta span.is-primary { background: var(--dph-orange); color: var(--dph-white); }

.dph-product__intro { font-size: 1.1rem; color: var(--dph-grey-700); margin: 0 0 32px; }

.dph-product__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
.dph-product__feature { display: flex; gap: 12px; align-items: flex-start; }
.dph-product__feature svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--dph-orange); }
.dph-product__feature strong { color: var(--dph-ink); }

.dph-product__specs-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.dph-product__specs-table tr { border-bottom: 1px solid var(--dph-grey-200); }
.dph-product__specs-table td { padding: 14px 0; }
.dph-product__specs-table td:first-child { color: var(--dph-grey-700); font-size: 0.95rem; width: 45%; }
.dph-product__specs-table td:last-child { font-weight: 700; color: var(--dph-ink); }

/* Booking panel (sticky) */
.dph-booking {
  position: sticky;
  top: 100px;
  background: var(--dph-white);
  border: 1px solid var(--dph-grey-200);
  border-radius: var(--dph-radius-lg);
  padding: 28px;
  box-shadow: var(--dph-shadow);
}
@media (max-width: 960px) { .dph-booking { position: static; } }
.dph-booking h3 { font-size: 1.25rem; margin: 0 0 6px; }
.dph-booking__sub { color: var(--dph-grey-700); font-size: 0.9rem; margin-bottom: 20px; }
.dph-booking__sla {
  background: rgba(255,122,0,0.08);
  color: var(--dph-orange-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: var(--dph-radius);
  margin-bottom: 20px;
  border-left: 3px solid var(--dph-orange);
}

.dph-field { margin-bottom: 14px; }
.dph-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dph-grey-900);
  margin-bottom: 6px;
}
.dph-field label .req { color: var(--dph-orange); }
.dph-field input, .dph-field select, .dph-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--dph-grey-300);
  border-radius: var(--dph-radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--dph-white);
  transition: border-color .2s var(--dph-ease);
}
.dph-field input:focus, .dph-field select:focus, .dph-field textarea:focus {
  outline: none;
  border-color: var(--dph-orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}
.dph-field textarea { resize: vertical; min-height: 80px; }
.dph-field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dph-field__check { display: flex; gap: 8px; align-items: flex-start; font-size: 0.85rem; color: var(--dph-grey-700); }
.dph-field__check input { width: auto; margin-top: 3px; }
.dph-booking__msg {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--dph-radius-sm);
  font-size: 0.9rem;
  display: none;
}
.dph-booking__msg.is-success { display: block; background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.dph-booking__msg.is-error   { display: block; background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

/* =========================================================
   TAXONOMY / ARCHIVE
   ========================================================= */
.dph-archive-intro {
  max-width: 820px;
  color: var(--dph-grey-700);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* =========================================================
   LOCATION PAGE
   ========================================================= */
.dph-loc-hero {
  background: linear-gradient(135deg, var(--dph-blue) 0%, var(--dph-blue-dark) 100%);
  color: var(--dph-white);
  padding: clamp(60px, 8vw, 100px) 0;
}
.dph-loc-meta { display: flex; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,.8); font-size: 0.95rem; margin-top: 16px; }
.dph-loc-meta strong { color: var(--dph-white); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.dph-reveal { opacity: 0; transform: translateY(20px); transition: all .7s var(--dph-ease); }
.dph-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.dph-text-center { text-align: center; }
.dph-mt-0 { margin-top: 0; }
.dph-mb-0 { margin-bottom: 0; }
.dph-mb-lg { margin-bottom: 48px; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* WordPress required classes */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--dph-grey-700); }
