/* =========================================================================
   Drywall Naples FL — Main stylesheet
   Design system: Drywall Naples FL brand (navy + gold), per site design.
   ========================================================================= */

/* ===== Design Tokens ===== */
:root {
	--dw-primary:       #1b3a5b;
	--dw-primary-light: #2c5780;
	--dw-primary-dark:  #0f2540;
	--dw-accent:        #c6932a;
	--dw-accent-2:      #e0b352;
	--dw-accent-dark:   #a87e1d;

	--dw-sand:          #f4efe7;
	--dw-sand-dark:     #e8e0d3;
	--dw-dark:          #142338;
	--dw-dark-2:        #1c2f4a;

	--dw-text:          #1a1a1a;
	--dw-text-muted:    #5a5a5a;
	--dw-text-light:    #f5f5f5;
	--dw-text-light-muted: rgba(245, 245, 245, 0.78);

	--dw-border:        rgba(0, 0, 0, 0.09);
	--dw-border-light:  rgba(255, 255, 255, 0.14);

	--dw-radius:        14px;
	--dw-radius-sm:     8px;
	--dw-radius-lg:     22px;

	--dw-shadow:        0 6px 28px rgba(20, 35, 56, 0.08);
	--dw-shadow-lg:     0 18px 50px rgba(20, 35, 56, 0.14);

	--dw-transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

	--dw-font-head:     "Inter", system-ui, -apple-system, sans-serif;
	--dw-font-body:     "Inter", system-ui, -apple-system, sans-serif;
	--dw-maxw:          1200px;
	--dw-pad:           clamp(1.25rem, 4vw, 3rem);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--dw-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--dw-text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--dw-primary); text-decoration: none; transition: color var(--dw-transition); }
a:hover { color: var(--dw-accent); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dw-font-head);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 0.6em;
}

h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1.1em; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25rem; }

.container {
	max-width: var(--dw-maxw);
	margin: 0 auto;
	padding: 0 var(--dw-pad);
}

/* Section anchors sit below the sticky header. */
#about, #services, #reviews, #service-area, #faq { scroll-margin-top: 92px; }

/* ===== Accessibility ===== */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%); height: 1px; width: 1px;
	margin: -1px; overflow: hidden; padding: 0; position: absolute !important;
	word-wrap: normal !important;
}
.skip-link:focus {
	clip: auto; clip-path: none; height: auto; width: auto;
	background: var(--dw-accent); color: var(--dw-primary-dark);
	padding: 10px 16px; z-index: 100000; left: 8px; top: 8px;
}

/* ===== Buttons ===== */
.dw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.8rem;
	border-radius: var(--dw-radius-sm);
	font-size: 0.95rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all var(--dw-transition);
	text-align: center;
	white-space: nowrap;
}
.dw-btn--solid {
	background: var(--dw-accent);
	color: #fff;
	box-shadow: 0 4px 14px rgba(198, 147, 42, 0.32);
}
.dw-btn--solid:hover {
	background: var(--dw-accent-2);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(198, 147, 42, 0.4);
}
.dw-btn--dark {
	background: var(--dw-primary);
	color: #fff;
}
.dw-btn--dark:hover { background: var(--dw-primary-light); color: #fff; transform: translateY(-2px); }
.dw-btn--ghost {
	background: transparent;
	color: var(--dw-text-light);
	border-color: var(--dw-border-light);
}
.dw-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: var(--dw-accent-2);
	transform: translateY(-2px);
}
.dw-btn--sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }

/* ===== Eyebrow / Kicker ===== */
.dw-eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dw-accent);
	margin-bottom: 0.6rem;
}
.dw-kicker {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--dw-accent-2);
	margin-bottom: 1.2rem;
	max-width: 760px;
}

/* ===== Header ===== */
.dw-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(15, 37, 64, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background var(--dw-transition), box-shadow var(--dw-transition);
}
.dw-header.is-scrolled {
	background: rgba(15, 37, 64, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dw-topbar {
	position: relative;
	z-index: 99;
	background: var(--dw-primary-dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
}
.dw-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 0.55rem;
}
.dw-topbar__tagline { margin: 0; letter-spacing: 0.02em; }
.dw-topbar__contact { display: flex; gap: 1.2rem; align-items: center; }
.dw-topbar__contact a { color: var(--dw-accent-2); text-decoration: none; font-weight: 600; }
.dw-topbar__contact a:hover { color: #fff; }

.dw-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}

.dw-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
	text-decoration: none;
}
.dw-brand__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--dw-accent);
	color: #fff;
	flex-shrink: 0;
}
.dw-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.dw-brand__name {
	font-family: var(--dw-font-head);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #fff;
	text-decoration: none;
}
.dw-brand__name span { color: var(--dw-accent-2); }
.dw-brand__sub {
	font-size: 0.62rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 2px;
}
.dw-header .custom-logo { width: auto; max-height: 46px; }

.dw-nav { margin-left: auto; align-self: stretch; display: flex; align-items: center; }
.dw-nav ul { list-style: none; margin: 0; padding: 0; }
.dw-nav__list { display: flex; align-items: center; gap: 0.1rem; }
.dw-nav__item { margin: 0; position: relative; }

.dw-nav__link {
	position: relative;
	display: block;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-family: var(--dw-font-head);
	font-weight: 600;
	font-size: 0.93rem;
	line-height: 1.2;
	padding: 0.6rem 0.9rem;
	border-radius: 9px;
	transition: color var(--dw-transition), background var(--dw-transition);
}
/* Animated gold underline on hover/active (not on child rows). */
.dw-nav > .dw-nav__list > .dw-nav__item > .dw-nav__link::after,
.dw-nav .menu-item-has-children > .dw-nav__link::after {
	content: "";
	position: absolute;
	left: 0.9rem;
	right: 0.9rem;
	bottom: 0.22rem;
	height: 2px;
	border-radius: 2px;
	background: var(--dw-accent-2);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--dw-transition);
}
.dw-nav__link:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.dw-nav__link:hover::after { transform: scaleX(1); }
.dw-nav .current-menu-item > .dw-nav__link,
.dw-nav .current-menu-ancestor > .dw-nav__link { color: var(--dw-accent-2); }
.dw-nav .current-menu-item > .dw-nav__link::after,
.dw-nav .current-menu-ancestor > .dw-nav__link::after { transform: scaleX(1); }

/* Parent marker: slim CSS chevron that flips when the menu opens. */
.dw-nav .menu-item-has-children > .dw-nav__link { padding-right: 1.35rem; }
.dw-nav .menu-item-has-children > .dw-nav__link::before {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 0.65rem;
	width: 7px;
	height: 7px;
	border-right: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--dw-transition), top var(--dw-transition);
}
.dw-nav .menu-item-has-children:hover > .dw-nav__link::before,
.dw-nav li:focus-within > .dw-nav__link::before {
	top: calc(50% - 2px);
	transform: rotate(225deg);
}
.dw-nav .menu-item-has-children > .dw-nav__link::after { right: 1.45rem; }

/* Dropdown panels */
.dw-nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 60;
	min-width: 264px;
	padding: 0.6rem;
	background: #fff;
	border: 1px solid var(--dw-border);
	border-top: 3px solid var(--dw-accent);
	border-radius: 14px;
	box-shadow: var(--dw-shadow-lg);
}
.dw-nav li:hover > ul,
.dw-nav li:focus-within > ul {
	display: block;
	animation: dw-nav-drop 0.18s ease;
}
@keyframes dw-nav-drop {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}
/* Panels near the right edge open to the left so they never clip. */
.dw-nav .dw-nav__item:nth-last-child(-n + 3).menu-item-has-children > ul {
	left: auto;
	right: 0;
}
.dw-nav ul ul .dw-nav__link {
	color: var(--dw-primary-dark);
	font-weight: 600;
	font-size: 0.92rem;
	padding: 0.6rem 0.85rem;
	border-radius: 9px;
	white-space: normal;
	background: none;
}
.dw-nav ul ul .dw-nav__link::before,
.dw-nav ul ul .dw-nav__link::after { content: none; }
.dw-nav ul ul .dw-nav__link:hover {
	background: rgba(27, 58, 91, 0.06);
	color: var(--dw-accent);
	padding-left: 1.05rem;
	transition: color var(--dw-transition), background var(--dw-transition), padding-left 0.15s ease;
}

.dw-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	flex: none;
	margin-left: 0.75rem;
	font-family: var(--dw-font-head);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1;
	white-space: nowrap;
	color: var(--dw-accent-2);
	text-decoration: none;
	transition: color var(--dw-transition);
}
.dw-header__phone svg { flex-shrink: 0; }
.dw-header__phone:hover { color: #fff; }

.dw-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-left: auto;
}
.dw-nav-toggle span {
	display: block;
	width: 24px;
	height: 2.5px;
	background: #fff;
	border-radius: 2px;
	transition: transform var(--dw-transition), opacity var(--dw-transition);
	margin: 0 auto;
}
.dw-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.dw-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dw-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Section base ===== */
.dw-section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.dw-section--sand { background: var(--dw-sand); }
.dw-section--dark { background: var(--dw-dark); color: var(--dw-text-light); }
.dw-section--dark h2, .dw-section--dark h3 { color: #fff; }
.dw-section--dark p { color: var(--dw-text-light-muted); }
.dw-section--dark a { color: var(--dw-accent-2); }
.dw-section--dark a:hover { color: #fff; }

.dw-section-head { max-width: 720px; margin: 0 auto 2.5rem; }
.dw-section-head--center { text-align: center; }
.dw-section-head h2 { margin: 0; }
.dw-section-head p { color: var(--dw-text-muted); margin: 0.6rem 0 0; font-size: 1.02rem; }
.dw-section--dark .dw-section-head p { color: var(--dw-text-light-muted); }

/* ===== Hero ===== */
.dw-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--dw-dark);
}
.dw-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.dw-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dw-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(15, 37, 64, 0.82) 0%, rgba(20, 35, 56, 0.62) 50%, rgba(15, 37, 64, 0.78) 100%);
}
.dw-hero__inner {
	position: relative;
	z-index: 2;
	color: var(--dw-text-light);
	padding-top: 4rem;
	padding-bottom: 4rem;
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}
.dw-hero__inner h1 {
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	color: #fff;
	margin-bottom: 1.2rem;
}
.dw-hero__accent { color: var(--dw-accent-2); }
.dw-hero__lead {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--dw-text-light-muted);
	margin-bottom: 2rem;
	max-width: 760px;
}
.dw-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}
.dw-hero__cta .dw-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}
.dw-hero__meta {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	margin: 0;
	padding: 1.5rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}
.dw-hero__meta li { display: flex; align-items: center; gap: 0.4rem; }
.dw-hero__meta strong { color: #fff; }
.dw-star { color: var(--dw-accent-2); letter-spacing: 0.05em; }

/* ===== Stats ===== */
.dw-stats {
	background: var(--dw-primary-dark);
	padding: 2.2rem 0;
}
.dw-stats__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	text-align: center;
}
.dw-stat__num {
	display: block;
	font-family: var(--dw-font-head);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}
.dw-stat__num small { font-size: 0.55em; font-weight: 500; color: var(--dw-accent-2); }
.dw-stat__label {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.02em;
}

/* ===== Intro / root summary ===== */
.dw-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.dw-intro__media { position: relative; }
.dw-intro__media img {
	width: 100%;
	border-radius: var(--dw-radius-lg);
	box-shadow: var(--dw-shadow-lg);
	aspect-ratio: 16/10;
	object-fit: cover;
}
.dw-intro__card {
	position: absolute;
	bottom: -22px;
	left: -16px;
	right: 30%;
	background: #fff;
	padding: 1rem 1.3rem;
	border-radius: var(--dw-radius);
	box-shadow: var(--dw-shadow-lg);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--dw-primary-dark);
	line-height: 1.45;
}
.dw-intro__card strong { color: var(--dw-accent); }
.dw-intro__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}
.dw-intro__list li {
	position: relative;
	padding: 0 0 0 1.6rem;
	font-size: 0.95rem;
	color: var(--dw-text-muted);
	border: 0;
}
.dw-intro__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dw-accent);
}
.dw-intro__list strong { color: var(--dw-text); }

/* ===== Services ===== */
.dw-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.dw-service {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--dw-radius);
	padding: 1.8rem 1.6rem;
	box-shadow: var(--dw-shadow);
	border: 1px solid var(--dw-border);
	transition: transform var(--dw-transition), box-shadow var(--dw-transition);
}
.dw-service:hover {
	transform: translateY(-4px);
	box-shadow: var(--dw-shadow-lg);
}
.dw-service__icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: var(--dw-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
	flex-shrink: 0;
}
.dw-service h3 { margin: 0 0 0.5rem; }
.dw-service h3 a { color: var(--dw-primary-dark); }
.dw-service h3 a:hover { color: var(--dw-accent); }
.dw-service p { font-size: 0.9rem; color: var(--dw-text-muted); line-height: 1.6; flex-grow: 1; }
.dw-service__more {
	display: inline-block;
	margin-top: 0.8rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--dw-accent);
}
.dw-service__more:hover { color: var(--dw-primary); }

.dw-services__extras {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}
.dw-service-mini {
	display: block;
	background: #fff;
	border: 1px solid var(--dw-border);
	border-radius: var(--dw-radius-sm);
	padding: 1.1rem 1.3rem;
	font-size: 0.85rem;
	color: var(--dw-text-muted);
	line-height: 1.5;
	transition: all var(--dw-transition);
}
.dw-service-mini:hover {
	border-color: var(--dw-accent);
	background: #fff;
	color: var(--dw-text);
	transform: translateY(-2px);
	box-shadow: var(--dw-shadow);
}
.dw-service-mini strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--dw-primary-dark);
	font-size: 0.92rem;
}

/* ===== Project types ===== */
.dw-types__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.dw-type {
	background: #fff;
	border-radius: var(--dw-radius);
	padding: 1.6rem 1.5rem;
	box-shadow: var(--dw-shadow);
	border: 1px solid var(--dw-border);
	transition: transform var(--dw-transition), box-shadow var(--dw-transition);
}
.dw-type:hover {
	transform: translateY(-4px);
	box-shadow: var(--dw-shadow-lg);
}
.dw-type__tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dw-accent);
	background: rgba(198, 147, 42, 0.1);
	padding: 0.3rem 0.7rem;
	border-radius: 20px;
	margin-bottom: 0.8rem;
}
.dw-type h3 { margin: 0 0 0.5rem; }
.dw-type h3 a { color: var(--dw-primary-dark); }
.dw-type h3 a:hover { color: var(--dw-accent); }
.dw-type p { font-size: 0.88rem; color: var(--dw-text-muted); margin: 0; }

/* ===== Quality / educational ===== */
.dw-quality__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.dw-quality {
	display: flex;
	flex-direction: column;
	background: var(--dw-dark-2);
	border-radius: var(--dw-radius-lg);
	overflow: hidden;
	border: 1px solid var(--dw-border-light);
	transition: transform var(--dw-transition);
}
.dw-quality:hover { transform: translateY(-4px); }
.dw-quality__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.4rem 1.5rem 1.1rem;
	border-bottom: 1px solid var(--dw-border-light);
	color: var(--dw-accent-2);
}
.dw-quality__top svg { width: 36px; height: 36px; flex: none; }
.dw-quality__step {
	font-family: var(--dw-font-head);
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.16);
}
.dw-quality__body {
	padding: 1.5rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.dw-quality__body h3 { margin: 0 0 0.6rem; color: #fff; }
.dw-quality__body p { font-size: 0.92rem; margin-bottom: 1.2rem; flex-grow: 1; }
.dw-quality__body .dw-btn {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
	font-size: 0.85rem;
	padding: 0.6rem 1.3rem;
	align-self: flex-start;
}
.dw-quality__body .dw-btn:hover {
	border-color: var(--dw-accent-2);
	color: var(--dw-accent-2);
}

/* ===== Process ===== */
.dw-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	counter-reset: step;
}
.dw-step {
	position: relative;
	background: #fff;
	border-radius: var(--dw-radius);
	padding: 1.8rem 1.5rem;
	box-shadow: var(--dw-shadow);
	border: 1px solid var(--dw-border);
	transition: transform var(--dw-transition);
}
.dw-step:hover { transform: translateY(-4px); }
.dw-step::before {
	counter-increment: step;
	content: counter(step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--dw-primary);
	color: #fff;
	font-family: var(--dw-font-head);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
}
.dw-step h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--dw-text); }
.dw-step p { font-size: 0.88rem; color: var(--dw-text-muted); margin: 0; }

/* ===== Reviews ===== */
.dw-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.dw-review {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--dw-radius);
	padding: 1.8rem 1.6rem;
	box-shadow: var(--dw-shadow);
	border: 1px solid var(--dw-border);
	transition: transform var(--dw-transition);
}
.dw-review:hover { transform: translateY(-4px); }
.dw-review__stars {
	font-size: 1.1rem;
	color: var(--dw-accent);
	letter-spacing: 0.05em;
	margin-bottom: 0.8rem;
}
.dw-review blockquote { margin: 0 0 1rem; }
.dw-review blockquote p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--dw-text);
	font-style: italic;
	margin: 0;
	flex-grow: 1;
}
.dw-review figcaption {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--dw-border);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--dw-primary-dark);
}
.dw-review figcaption span {
	display: block;
	font-weight: 400;
	color: var(--dw-text-muted);
	font-size: 0.8rem;
	margin-top: 0.2rem;
}
.dw-reviews__summary {
	text-align: center;
	margin-top: 2rem;
	font-size: 0.92rem;
	color: var(--dw-text-muted);
}
.dw-reviews__summary a { color: var(--dw-accent); font-weight: 600; }
.dw-reviews__summary a:hover { color: var(--dw-primary); }

/* ===== Service area ===== */
.dw-area__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.dw-area__note {
	margin-top: 1.2rem;
	padding: 1rem 1.3rem;
	background: rgba(27, 58, 91, 0.06);
	border-left: 3px solid var(--dw-accent);
	border-radius: 0 var(--dw-radius-sm) var(--dw-radius-sm) 0;
	font-size: 0.9rem;
	color: var(--dw-primary-dark);
	font-weight: 500;
}
.dw-area__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}
.dw-area-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 1.2rem;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	background: #fff;
	color: var(--dw-primary-dark);
	border: 1px solid var(--dw-border);
	transition: all var(--dw-transition);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.dw-area-chip:hover {
	border-color: var(--dw-accent);
	color: var(--dw-accent);
	transform: translateY(-2px);
	box-shadow: var(--dw-shadow);
}
.dw-area-chip--primary {
	background: var(--dw-primary);
	color: #fff;
	border-color: var(--dw-primary);
}
.dw-area-chip--primary:hover {
	background: var(--dw-primary-light);
	color: #fff;
	border-color: var(--dw-primary-light);
}

/* ===== FAQ ===== */
.dw-faq {
	max-width: 820px;
	margin: 0 auto;
	display: grid;
	gap: 0.8rem;
}
.dw-faq details {
	background: #fff;
	border: 1px solid var(--dw-border);
	border-radius: var(--dw-radius-sm);
	overflow: hidden;
	transition: box-shadow var(--dw-transition);
}
.dw-faq details[open] { box-shadow: var(--dw-shadow); }
.dw-faq summary {
	padding: 1.1rem 1.4rem;
	font-family: var(--dw-font-head);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--dw-primary-dark);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: background var(--dw-transition);
	margin: 0;
}
.dw-faq summary::-webkit-details-marker { display: none; }
.dw-faq summary::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	color: var(--dw-accent);
	transition: transform var(--dw-transition);
	flex-shrink: 0;
}
.dw-faq details[open] summary::after { transform: rotate(45deg); }
.dw-faq summary:hover { background: rgba(198, 147, 42, 0.05); }
.dw-faq__body {
	padding: 0 1.4rem 1.2rem;
	font-size: 0.92rem;
	color: var(--dw-text-muted);
	line-height: 1.65;
}
.dw-faq__body p { margin: 0; }

/* ===== CTA band ===== */
.dw-cta {
	background: var(--dw-primary);
	color: #fff;
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	text-align: center;
}
.dw-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.6rem;
}
.dw-cta__title { color: #fff; margin: 0; }
.dw-cta__text {
	color: var(--dw-text-light-muted);
	margin: 0;
	font-size: 1.05rem;
	max-width: 680px;
}
.dw-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.dw-cta .dw-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}
.dw-cta .dw-btn--ghost:hover {
	border-color: var(--dw-accent-2);
	color: var(--dw-accent-2);
	background: transparent;
}

/* ===== Footer ===== */
.dw-footer {
	background: var(--dw-primary-dark);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
}
.dw-footer__main { padding: clamp(2.5rem, 5vw, 4rem) 0 2.2rem; }
.dw-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
	gap: 2.75rem;
}
.dw-footer__brand {
	font-family: var(--dw-font-head);
	font-weight: 700;
	font-size: 1.4rem;
	color: #fff;
	margin-bottom: 0.7rem;
	letter-spacing: -0.01em;
}
.dw-footer__brand span { color: var(--dw-accent-2); }
.dw-footer__heading {
	color: #fff;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 1.1rem;
}
.dw-footer__links, .dw-footer__contact, .dw-footer__badges { list-style: none; margin: 0; padding: 0; }
.dw-footer__links li { margin-bottom: 0.55rem; }
.dw-footer__links a, .dw-footer__contact a { color: rgba(255, 255, 255, 0.62); text-decoration: none; }
.dw-footer__links a:hover, .dw-footer__contact a:hover { color: var(--dw-accent-2); }
.dw-footer__contact li { margin-bottom: 0.6rem; }
.dw-footer__contact a { color: var(--dw-accent-2); }
.dw-footer__nap { color: #dfe6ec; }
.dw-footer__col .dw-btn { margin-top: 0.6rem; }
.dw-footer__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.dw-footer__badges li {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
	color: rgba(255, 255, 255, 0.7);
}
.dw-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1.25rem 0; font-size: 0.82rem; }
.dw-footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }
.dw-footer__bottom p { margin: 0; }
.dw-footer__disclaimer { color: rgba(255, 255, 255, 0.4); }

/* ===== Page headers (inner templates) ===== */
.dw-pagehead {
	background: var(--dw-primary-dark);
	color: #fff;
	padding: clamp(3rem, 6.5vw, 5rem) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dw-pagehead h1 { color: #fff; margin: 0; }
.dw-pagehead p { color: var(--dw-text-light-muted); margin: 0.6rem 0 0; max-width: 70ch; }

/* ===== Content / blog ===== */
.dw-main { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.dw-main--tight { padding-top: 0; }
.entry-content { max-width: 860px; }
.entry-content h2, .entry-content h3 { margin-top: 1.4em; }
.entry-content h2 { border-bottom: 1px solid var(--dw-border); padding-bottom: 0.3em; }
.entry-content img { border-radius: 8px; }
.entry-content a { font-weight: 600; }
.entry-content ul, .entry-content ol { margin: 0 0 1.1em 1.2em; }
.entry-content li { margin-bottom: 0.45em; }
.dw-gallery-img { width: 100%; height: auto; border-radius: 10px; margin: 6px 0 10px; border: 1px solid var(--dw-border); }
.wp-block-image, .alignwide, .alignfull { margin-block: 1.6em; }
.entry-header { margin-bottom: 1.4rem; }
.entry-header h1, .entry-header h2 { margin-bottom: 0.4rem; }
.entry-header h2 a { color: var(--dw-primary-dark); text-decoration: none; }
.entry-header h2 a:hover { color: var(--dw-accent); }
.entry-meta { color: var(--dw-text-muted); font-size: 0.88rem; }
.entry-meta a { color: var(--dw-text-muted); }
.archive-items, .search-items { max-width: 860px; }
.dw-post {
	padding: 1.8rem 0;
	border-bottom: 1px solid var(--dw-border);
}
.dw-post:first-child { padding-top: 0; }
.dw-post:last-child { border-bottom: 0; }
.dw-post__thumb { border-radius: 8px; overflow: hidden; margin-bottom: 1.1rem; }
.dw-post__thumb img { width: 100%; object-fit: cover; }
.dw-more a { font-weight: 700; }
.nav-links { display: flex; justify-content: space-between; margin-top: 2.1rem; }
.nav-links a { font-family: var(--dw-font-head); font-weight: 700; }
.pagination { display: flex; gap: 0.5rem; margin-top: 2.1rem; flex-wrap: wrap; }
.pagination .page-numbers {
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--dw-border);
	border-radius: 6px;
	text-decoration: none;
	color: var(--dw-primary-dark);
	font-weight: 600;
}
.pagination .page-numbers.current { background: var(--dw-primary); color: #fff; border-color: var(--dw-primary); }

/* ===== Forms / 404 ===== */
.search-form { display: flex; gap: 10px; max-width: 480px; margin-top: 20px; }
.search-form input[type="search"] {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--dw-border);
	border-radius: 6px;
	font-family: var(--dw-font-body);
	font-size: 1rem;
	color: var(--dw-text);
}
.search-form button {
	border: 0;
	background: var(--dw-primary);
	color: #fff;
	padding: 0 20px;
	border-radius: 6px;
	font-family: var(--dw-font-head);
	font-weight: 700;
	cursor: pointer;
}
.search-form button:hover { background: var(--dw-primary-light); }
.comments-area { max-width: 860px; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--dw-border); }
.comment-list { list-style: none; padding: 0; }
.comment-list ul { list-style: none; padding-left: 28px; }
.comment-body { padding: 16px 0; border-bottom: 1px solid var(--dw-border); }
.comment-meta { font-size: 0.88rem; color: var(--dw-text-muted); }
.comment-form input, .comment-form textarea {
	padding: 10px 12px;
	border: 1px solid var(--dw-border);
	border-radius: 6px;
	font-family: var(--dw-font-body);
	font-size: 1rem;
	color: var(--dw-text);
}
.comment-form input:focus, .comment-form textarea:focus, .search-form input:focus { outline: 2px solid rgba(198, 147, 42, 0.35); }

/* ===== Responsive ===== */
@media (max-width: 1180px) {
	.dw-header__phone { font-size: 1.25rem; }
	.dw-nav__link { font-size: 0.87rem; padding: 0.5rem 0.6rem; }
	.dw-nav .menu-item-has-children > .dw-nav__link { padding-right: 1.1rem; }
	.dw-nav .menu-item-has-children > .dw-nav__link::after { right: 1.15rem; }
}

@media (max-width: 1024px) {
	.dw-header__phone { font-size: 1.1rem; }
	.dw-services__grid, .dw-types__grid, .dw-process__grid { grid-template-columns: repeat(2, 1fr); }
	.dw-services__extras { grid-template-columns: repeat(2, 1fr); }
	.dw-quality__grid { grid-template-columns: 1fr; }
	.dw-reviews__grid { grid-template-columns: 1fr; }
	.dw-stats__grid { grid-template-columns: repeat(3, 1fr); }
	.dw-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
	.dw-nav-toggle { display: flex; margin-left: auto; }
	.dw-nav { display: none; }
	.dw-header__phone { font-size: 1.05rem; margin-left: 0.5rem; }
	.dw-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--dw-primary-dark);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: var(--dw-shadow-lg);
		margin: 0;
	}
	.dw-nav.is-open {
		display: block;
		max-height: calc(100vh - 76px);
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}
	@supports (height: 100dvh) {
		.dw-nav.is-open { max-height: calc(100dvh - 76px); }
	}
	.dw-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0.6rem 1rem 1rem; }
	.dw-nav__link {
		padding: 0.75rem 0.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		border-radius: 0;
		font-size: 0.95rem;
	}
	.dw-nav ul ul {
		display: block;
		position: static;
		box-shadow: none;
		background: transparent;
		border: 0;
		padding: 0 0 0.4rem 0.9rem;
		min-width: 0;
	}
	.dw-nav ul ul .dw-nav__link { color: rgba(255, 255, 255, 0.75); }
	.dw-nav ul ul .dw-nav__link:hover { background: rgba(255, 255, 255, 0.05); color: var(--dw-accent-2); }
	/* Mobile: kill the desktop underline/chevron, restore a plain caret. */
	.dw-nav__link::after,
	.dw-nav .menu-item-has-children > .dw-nav__link::before { content: none; transform: none; }
	.dw-nav .menu-item-has-children > .dw-nav__link { padding-right: 0.5rem; }
	.dw-nav__list .menu-item-has-children > .dw-nav__link::after {
		content: "\25BE";
		display: block;
		position: static;
		float: right;
		margin-top: 2px;
		width: auto;
		height: auto;
		background: none;
		font-size: 0.75em;
		opacity: 0.7;
	}
}

@media (max-width: 768px) {
	.dw-topbar { display: none; }
	.dw-hero { min-height: auto; }
	.dw-hero__inner { padding-top: clamp(3.5rem, 13vh, 5.5rem); padding-bottom: clamp(3rem, 11vh, 4.5rem); }
	.dw-hero__inner h1 { font-size: clamp(1.7rem, 6.8vw, 2.4rem); }
	.dw-hero__lead { font-size: 1.02rem; }
	.dw-intro__grid, .dw-area__layout { grid-template-columns: 1fr; }
	.dw-intro__card {
		position: static;
		margin: -20px auto 0;
		width: fit-content;
		max-width: 90%;
	}
	.dw-hero__cta { flex-direction: column; align-items: stretch; }
	.dw-hero__cta .dw-btn { width: 100%; }
	.dw-hero__meta { flex-direction: column; gap: 0.6rem; }
	.dw-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.dw-services__grid, .dw-types__grid, .dw-process__grid { grid-template-columns: 1fr; }
	.dw-services__extras { grid-template-columns: 1fr; }
	.dw-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
	.dw-stats__grid .dw-stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
	.dw-cta__actions { flex-direction: column; align-items: stretch; }
	.dw-cta__actions .dw-btn { width: 100%; }
	.dw-brand__sub { display: none; }
	.dw-header__inner { gap: 0.75rem; padding-top: 0.55rem; padding-bottom: 0.55rem; }
	.dw-brand { gap: 0.55rem; min-width: 0; }
	.dw-brand__logo { width: 36px; height: 36px; border-radius: 9px; }
	.dw-brand__name { font-size: 1rem; white-space: nowrap; }
	.dw-brand__text { min-width: 0; }
	.dw-header__phone { font-size: 0.95rem; margin-left: 0.4rem; }
	.dw-header__phone svg { display: none; }
	.dw-nav-toggle { margin-left: auto; }
	.dw-section { padding: 2.75rem 0; }
	.dw-section-head { margin-bottom: 1.75rem; }
	.dw-stats { padding: 1.5rem 0; }
	.dw-stat__num { font-size: clamp(1.45rem, 7vw, 1.9rem); }
	.dw-stat__label { font-size: 0.72rem; }
	.dw-area-chip { padding: 0.6rem 1rem; font-size: 0.8rem; }
	.dw-cta__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
	.dw-btn { padding: 0.8rem 1.4rem; font-size: 0.92rem; }
}

@media (max-width: 400px) {
	.dw-header__inner { gap: 0.5rem; }
	.dw-brand__name { font-size: 0.94rem; }
	.dw-brand__logo { width: 32px; height: 32px; }
	.dw-header__phone { font-size: 0.88rem; margin-left: 0.3rem; }
	.dw-hero__inner h1 { font-size: clamp(1.6rem, 7.5vw, 1.95rem); }
	.dw-hero__inner .dw-kicker, .dw-section-head .dw-eyebrow { font-size: 0.72rem; }
	.dw-services__extras { grid-template-columns: 1fr; }
	.dw-footer__grid { gap: 2rem; }
	.dw-quality__body { padding: 1.4rem 1.2rem 1.7rem; }
	.dw-faq summary { padding: 1rem 1.1rem; }
	.dw-faq__body { padding: 0 1.1rem 1.1rem; }
}

@media (max-width: 340px) {
	.dw-brand__name { font-size: 0.9rem; }
	.dw-header__phone { display: none; }
}
