/*
Theme Name: Platinum Salon ROC
Theme URI: https://allsupport.co
Author: AllSupport
Author URI: https://allsupport.co
Description: Hand-coded custom theme for Platinum Salon ROC. No page builders, no frameworks, one stylesheet.
Version: 1.0.0
Text Domain: platinumsalon

- One stylesheet per theme. Nothing else is enqueued.
- Every media query lives in the RESPONSIVE section. Do not add them elsewhere.
- The nav hover override stays absolute last. Nothing goes after it.
- New component sections insert before RESPONSIVE, never after.

SECTION INDEX
 1  DESIGN TOKENS
 2  RESET AND BASE
 3  TYPOGRAPHY
 4  LAYOUT
 5  BUTTONS
 6  HEADER
 7  NAV DROPDOWNS
 8  HOME HERO
 9  PAGE HERO
10  TEAM GRID
11  SINGLE STYLIST
12  TEAM STRIP
13  SERVICES ACCORDION AND PRICE TABLES
14  SPLIT SECTIONS
15  PHOTO STRIP
16  BENEFITS LIST
17  CTA SECTION
18  CONTACT
19  FORMS (CONTACT FORM 7)
20  HOURS PANEL
21  FOOTER
22  404 AND SEARCH
23  UTILITIES
24  LOGIN PAGE
25  RESPONSIVE
26  NAV HOVER OVERRIDE (ABSOLUTE LAST)
*/

/* ============================================================
   1  DESIGN TOKENS
   ============================================================ */
:root {
	--green: #626e60;
	--green-dark: #4a5449;
	--green-soft: #7d867a;
	--tan: #ddd0b6;
	--tan-dark: #c9b893;
	--cream: #f5f3ef;
	--white: #ffffff;
	--ink: #1d201d;
	--ink-soft: #2b2f2b;
	--line: rgba(98, 110, 96, 0.22);

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Lato', -apple-system, Segoe UI, sans-serif;

	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 40px;
	--space-xl: 64px;
	--space-2xl: 80px;
	--space-3xl: 112px;

	--radius: 2px;
	--ease: cubic-bezier(0.33, 1, 0.68, 1);
	--dur: 0.35s;
	--container: 1200px;
}

/* ============================================================
   2  RESET AND BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--cream);
	color: var(--green-soft);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

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

a { color: var(--green); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--ink); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

::selection { background: var(--tan); color: var(--ink); }

figure { margin: 0; }

hr.rule {
	border: 0;
	border-top: 1px solid var(--line);
	margin: var(--space-lg) 0;
}

/* ============================================================
   3  TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--green);
	line-height: 1.15;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1.2em; }

.lead {
	font-size: 1.15rem;
	line-height: 1.85;
	color: var(--green-soft);
}

.section-eyebrow {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--green-soft);
	margin: 0 0 var(--space-sm);
}
.section-eyebrow::before,
.section-eyebrow::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}
.section-eyebrow--left { justify-content: flex-start; }
.section-eyebrow--left::before { display: none; }
.section-eyebrow--left::after { max-width: 80px; }

.section-title { margin-bottom: var(--space-md); }
.text-center { text-align: center; }

.fancy-name .cap {
	font-size: 1.45em;
	line-height: 1;
}

/* ============================================================
   4  LAYOUT
   ============================================================ */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.site-content { flex: 1; }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

.section { padding: var(--space-3xl) 0; }
.section--tight { padding: var(--space-2xl) 0; }
.section--banner { padding: var(--space-lg) 0; }

.section-dark {
	background: var(--ink);
	color: rgba(245, 243, 239, 0.78);
	outline: 1px solid var(--ink);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark .section-eyebrow { color: var(--tan); }
.section-dark .section-eyebrow::before,
.section-dark .section-eyebrow::after { background: rgba(221, 208, 182, 0.3); }
.section-dark a { color: var(--tan); }

.section-white { background: var(--white); }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }

/* ============================================================
   5  BUTTONS
   ============================================================ */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1;
	padding: 17px 34px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.btn-primary {
	background: var(--tan);
	border-color: var(--tan);
	color: var(--ink);
}
.btn-primary:hover {
	background: var(--tan-dark);
	border-color: var(--tan-dark);
	color: var(--ink);
}

.btn-outline {
	background: transparent;
	border-color: var(--green);
	color: var(--green);
}
.btn-outline:hover {
	background: var(--green);
	color: var(--cream);
}

.section-dark .btn-outline {
	border-color: var(--tan);
	color: var(--tan);
}
.section-dark .btn-outline:hover {
	background: var(--tan);
	color: var(--ink);
}

.btn-ghost {
	background: transparent;
	border-color: transparent;
	color: var(--green);
	padding-left: 0;
	padding-right: 0;
	border-bottom: 1px solid var(--green);
	border-radius: 0;
	padding-bottom: 6px;
}
.btn-ghost:hover { color: var(--ink); border-bottom-color: var(--ink); }

.btn-group { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ============================================================
   6  HEADER
   ============================================================ */
.utility-bar {
	background: var(--ink);
	color: rgba(245, 243, 239, 0.75);
	font-size: 12.5px;
	letter-spacing: 0.04em;
}
.utility-bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	gap: var(--space-md);
}
.utility-bar__info { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.utility-bar__info a,
.utility-bar__info span { color: rgba(245, 243, 239, 0.75); display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__info a:hover { color: var(--tan); }
.utility-bar__social { display: flex; align-items: center; gap: 4px; }
.utility-bar__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: rgba(245, 243, 239, 0.75);
}
.utility-bar__social a:hover { color: var(--tan); }
.utility-bar svg { width: 15px; height: 15px; fill: currentColor; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--cream);
	border-bottom: 1px solid var(--line);
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 92px;
	gap: var(--space-lg);
}

.site-logo { display: inline-flex; align-items: center; }
.site-logo img { max-height: 44px; width: auto; }
.site-logo__text {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ink);
}

.site-nav { display: flex; align-items: center; }
.nav-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-menu a {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--green-soft);
	padding: 12px 15px;
}
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--ink); }

.nav-menu .nav-cta > a {
	border: 1px solid var(--tan-dark);
	background: var(--tan);
	color: var(--ink);
	padding: 14px 22px;
	margin-left: 10px;
	border-radius: var(--radius);
	transition: background var(--dur) var(--ease);
}
.nav-menu .nav-cta > a:hover { background: var(--tan-dark); color: var(--ink); }

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--ink);
	margin: 5px 0;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7  NAV DROPDOWNS
   ============================================================ */
.nav-menu li { position: relative; }
.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 14px 30px rgba(29, 32, 29, 0.08);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
	z-index: 95;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-menu .sub-menu li { display: block; }
.nav-menu .sub-menu a {
	display: block;
	background: none;
	border: 0;
	margin: 0;
	padding: 11px 20px;
	font-size: 12px;
	text-align: left;
	color: var(--green-soft);
}
.nav-menu .sub-menu a:hover { color: var(--ink); background: var(--cream); }

/* ============================================================
   8  HOME HERO
   ============================================================ */
.home-hero {
	position: relative;
	min-height: 74vh;
	display: flex;
	align-items: center;
	background-color: var(--ink);
	background-size: cover;
	background-position: center 30%;
	color: var(--cream);
}
.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(29, 32, 29, 0.55) 0%, rgba(29, 32, 29, 0.78) 100%);
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero__inner { max-width: 680px; padding: var(--space-3xl) 0; }
.home-hero__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--tan);
	margin-bottom: var(--space-sm);
}
.home-hero h1 { color: var(--white); margin-bottom: var(--space-sm); }
.home-hero__sub {
	font-size: 1.15rem;
	line-height: 1.85;
	color: rgba(245, 243, 239, 0.85);
	margin-bottom: var(--space-lg);
	max-width: 560px;
}
.home-hero .btn-outline { border-color: var(--cream); color: var(--cream); }
.home-hero .btn-outline:hover { background: var(--cream); color: var(--ink); }

/* ============================================================
   9  PAGE HERO
   ============================================================ */
.page-hero {
	padding: var(--space-2xl) 0 var(--space-xl);
	border-bottom: 1px solid var(--line);
}
.page-hero__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--green-soft);
	margin-bottom: 10px;
}
.page-hero h1 { margin-bottom: 0.35em; }
.page-hero__sub {
	max-width: 640px;
	font-size: 1.1rem;
	color: var(--green-soft);
	margin: 0;
}
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__sub { margin: 0 auto; }

/* ============================================================
   10  TEAM GRID
   ============================================================ */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
}
.team-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--ink);
	border-radius: var(--radius);
}
.team-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 0.55s var(--ease), transform 0.55s var(--ease);
}
.team-card__scrim {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	padding: var(--space-md);
	background: linear-gradient(180deg, rgba(29, 32, 29, 0) 45%, rgba(29, 32, 29, 0.82) 100%);
}
.team-card__name {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 1.8vw, 1.7rem);
	font-weight: 500;
	color: var(--white);
	line-height: 1.1;
}
.team-card__name::after {
	content: "";
	display: block;
	width: 34px;
	height: 1px;
	background: var(--tan);
	margin: 10px auto;
}
.team-card__level {
	display: block;
	font-size: 11.5px;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: rgba(245, 243, 239, 0.85);
	line-height: 1.5;
}
.team-card:hover img,
.team-card:focus-visible img { transform: scale(1.04); }

.team-grid--bw .team-card img { filter: grayscale(1); }
.team-grid--bw .team-card:hover img,
.team-grid--bw .team-card:focus-visible img { filter: grayscale(0); transform: scale(1.04); }

/* ============================================================
   11  SINGLE STYLIST
   ============================================================ */
.stylist-hero { padding: var(--space-2xl) 0; }
.stylist-hero .container {
	display: grid;
	grid-template-columns: 440px 1fr;
	gap: var(--space-xl);
	align-items: start;
}
.stylist-hero__photo img {
	width: 100%;
	border-radius: var(--radius);
}
.stylist-hero__level {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-style: italic;
	color: var(--green-soft);
	margin: 0 0 var(--space-sm);
}
.stylist-hero__specialty {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--tan-dark);
	margin: 0 0 var(--space-md);
}
.stylist-hero__divider {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 0 0 var(--space-md);
	max-width: 520px;
}
.stylist-hero__bio { max-width: 620px; }
.stylist-hero__actions { margin-top: var(--space-lg); display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.stylist-social { display: flex; gap: 6px; }
.stylist-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--green);
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.stylist-social a:hover { background: var(--green); color: var(--cream); border-color: var(--green); }
.stylist-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ============================================================
   12  TEAM STRIP
   ============================================================ */
.team-strip-section {
	background: var(--white);
	padding: var(--space-2xl) 0;
	border-top: 1px solid var(--line);
}
.team-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-sm);
	margin-top: var(--space-md);
}
.team-strip .team-card__name { font-size: 1.15rem; }
.team-strip .team-card__level { font-size: 10.5px; }
.team-strip-section__footer { margin-top: var(--space-md); text-align: center; }

/* ============================================================
   13  SERVICES ACCORDION AND PRICE TABLES
   ============================================================ */
.svc-acc {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 14px;
}
.svc-acc summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	padding: 22px 28px;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--green);
	user-select: none;
}
.svc-acc summary::-webkit-details-marker { display: none; }
.svc-acc summary .fa { margin-right: 12px; color: var(--tan-dark); font-size: 1.1rem; width: 20px; text-align: center; }
.svc-acc summary::after {
	content: "+";
	font-family: var(--font-body);
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	color: var(--tan-dark);
	transition: transform var(--dur) var(--ease);
}
.svc-acc[open] summary::after { transform: rotate(45deg); }
.svc-acc[open] summary { border-bottom: 1px solid var(--line); }
.svc-acc__panel { padding: var(--space-md) 28px 28px; }
.svc-acc__note {
	font-size: 13.5px;
	font-style: italic;
	color: var(--green-soft);
	margin-bottom: var(--space-sm);
}
.svc-acc__panel .btn { margin-top: var(--space-sm); }

.table-scroll {
	overflow-x: auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: var(--space-xs);
	max-height: 420px;
}
.table-hint { display: none; font-size: 12px; letter-spacing: 0.06em; color: var(--green-soft); margin: 0 0 var(--space-sm); }

.price-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 14px;
}
.price-table th,
.price-table td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--line);
	text-align: center;
	white-space: nowrap;
}
.price-table th {
	background: var(--ink);
	color: var(--cream);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom: 0;
	position: sticky;
	top: 0;
	z-index: 2;
	white-space: nowrap;
}
.price-table th:first-child,
.price-table td:first-child {
	text-align: left;
	white-space: normal;
	min-width: 190px;
	font-weight: 700;
	color: var(--green);
	position: sticky;
	left: 0;
	z-index: 1;
	background: var(--white);
}
.price-table tbody tr:nth-child(even) td:first-child { background: var(--cream); }
.price-table th:first-child {
	background: var(--ink);
	color: var(--cream);
	z-index: 3;
}
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table caption {
	caption-side: top;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--green);
	padding-bottom: 10px;
}

/* ============================================================
   14  SPLIT SECTIONS
   ============================================================ */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius); }

/* ============================================================
   15  PHOTO STRIP
   ============================================================ */
.photo-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.photo-strip img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--radius);
}

/* ============================================================
   16  BENEFITS LIST
   ============================================================ */
.benefits-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px var(--space-lg);
}
.benefits-list li {
	position: relative;
	padding-left: 30px;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--green);
}
.benefits-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 16px;
	height: 1px;
	background: var(--tan-dark);
}

/* ============================================================
   17  CTA SECTION
   ============================================================ */
.section-cta {
	background: var(--green);
	color: rgba(245, 243, 239, 0.88);
	padding: var(--space-2xl) 0;
	text-align: center;
}
.section-cta h2 { color: var(--white); }
.section-cta p { max-width: 560px; margin: 0 auto var(--space-lg); }
.section-cta .btn-group { justify-content: center; }
.section-cta .btn-outline { border-color: var(--cream); color: var(--cream); }
.section-cta .btn-outline:hover { background: var(--cream); color: var(--green); }

/* ============================================================
   18  CONTACT
   ============================================================ */
.map-embed { line-height: 0; }
.map-embed iframe { width: 100%; height: 440px; border: 0; }

.contact-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-xl);
	align-items: start;
}
.contact-info h2 { margin-bottom: var(--space-sm); }
.contact-info__block { margin-bottom: var(--space-md); }
.contact-info__label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--tan-dark);
	margin-bottom: 4px;
}
.contact-info__value {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--green);
	line-height: 1.4;
}
.contact-info__value a { color: var(--green); }
.contact-info__value a:hover { color: var(--ink); }

/* ============================================================
   19  FORMS (CONTACT FORM 7)
   ============================================================ */
.wpcf7 label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 6px;
}
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: var(--space-md); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(98, 110, 96, 0.15);
}
.wpcf7 textarea { min-height: 170px; resize: vertical; }
.wpcf7 .wpcf7-list-item { display: block; margin: 0 0 8px; }
.wpcf7 .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	font-size: 15px;
	color: var(--green-soft);
	margin: 0;
}
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] { width: 17px; height: 17px; accent-color: var(--green); }
.wpcf7 input[type="submit"] {
	display: inline-block;
	background: var(--tan);
	border: 1px solid var(--tan);
	border-radius: var(--radius);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1;
	padding: 17px 34px;
	cursor: pointer;
	transition: background var(--dur) var(--ease);
}
.wpcf7 input[type="submit"]:hover { background: var(--tan-dark); }
.wpcf7 .wpcf7-not-valid-tip { display: block; font-size: 13px; color: #a4442c; margin-top: 6px; }
.wpcf7 .wpcf7-response-output {
	margin: var(--space-md) 0 0;
	padding: 16px 20px;
	border: 1px solid var(--green);
	border-radius: var(--radius);
	font-size: 14.5px;
	color: var(--green);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-color: #a4442c; color: #a4442c; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--green); background: rgba(98, 110, 96, 0.06); }

/* ============================================================
   20  HOURS PANEL
   ============================================================ */
.hours-panel {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-md);
	align-items: stretch;
}
.hours-today {
	border: 1px solid rgba(221, 208, 182, 0.3);
	border-radius: var(--radius);
	padding: var(--space-sm) var(--space-md);
}
.hours-today__date {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--cream);
	margin-bottom: 4px;
}
.hours-today__msg { font-size: 13.5px; margin: 0 0 12px; color: rgba(245, 243, 239, 0.7); }
.hours-badge {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 20px;
	border: 1px solid var(--tan);
	color: var(--tan);
}
.hours-badge--open { background: var(--tan); color: var(--ink); }
.hours-week { list-style: none; margin: 0; padding: 0; font-size: 13.5px; }
.hours-week li {
	display: flex;
	justify-content: space-between;
	gap: var(--space-md);
	padding: 7px 0;
	border-bottom: 1px solid rgba(221, 208, 182, 0.12);
	color: rgba(245, 243, 239, 0.7);
}
.hours-week li:last-child { border-bottom: 0; }
.hours-week li.is-today { color: var(--tan); font-weight: 700; }
.hours-week li.is-today .hours-week__days::before { content: "\2022"; margin-right: 8px; }

/* ============================================================
   21  FOOTER
   ============================================================ */
.site-footer {
	background: var(--ink);
	color: rgba(245, 243, 239, 0.7);
	font-size: 14px;
	margin-top: auto;
}
.site-footer__main {
	padding: var(--space-2xl) 0;
	display: grid;
	grid-template-columns: 1.4fr 1fr 0.8fr;
	gap: var(--space-xl);
}
.site-footer h4 {
	color: var(--cream);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: var(--space-sm);
}
.site-footer a { color: rgba(245, 243, 239, 0.7); }
.site-footer a:hover { color: var(--tan); }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { padding: 5px 0; }
.footer-contact p { margin: 0 0 10px; }
.footer-social { display: flex; gap: 8px; margin-top: var(--space-sm); }
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(221, 208, 182, 0.3);
	border-radius: 50%;
}
.footer-social a:hover { border-color: var(--tan); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.site-footer__bottom {
	border-top: 1px solid rgba(221, 208, 182, 0.12);
	padding: var(--space-md) 0;
}
.site-footer__bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	flex-wrap: wrap;
	font-size: 12.5px;
	color: rgba(245, 243, 239, 0.5);
}
.site-footer__bottom a { color: rgba(245, 243, 239, 0.6); }

/* ============================================================
   22  404 AND SEARCH
   ============================================================ */
.error-page { padding: var(--space-3xl) 0; text-align: center; }
.error-page h1 { margin-bottom: var(--space-sm); }
.error-page p { max-width: 480px; margin: 0 auto var(--space-lg); }
.error-page .search-form { max-width: 440px; margin: 0 auto var(--space-lg); display: flex; gap: 10px; }
.error-page .btn-group { justify-content: center; }

.search-form input[type="search"] {
	flex: 1;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--green); }
.search-form button {
	background: var(--tan);
	border: 1px solid var(--tan);
	border-radius: var(--radius);
	padding: 0 24px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	cursor: pointer;
}

.result-list { display: grid; gap: var(--space-sm); max-width: 760px; }
.result-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--space-md);
}
.result-card h3 { margin-bottom: 6px; }
.result-card__type {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--tan-dark);
}
.result-card p { margin: 8px 0 0; font-size: 14.5px; }

/* ============================================================
   23  UTILITIES
   ============================================================ */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--ink);
	color: var(--cream);
	padding: 12px 20px;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--tan); }

.screen-reader-text,
.sr-note {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.aligncenter { margin-left: auto; margin-right: auto; }
.alignwide { max-width: 100%; }

/* ============================================================
   24  LOGIN PAGE
   ============================================================ */
body.login {
	background: var(--cream);
	font-family: var(--font-body);
}
body.login #login { width: 380px; padding-top: 8vh; }
body.login h1 a {
	background-image: none !important;
	width: auto;
	height: auto;
	text-indent: 0;
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink);
	overflow: visible;
}
body.login h1::after {
	content: "HAIR ARTISTRY | ROCHESTER NY";
	display: block;
	text-align: center;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.32em;
	color: var(--green-soft);
	margin-top: 10px;
}
body.login #loginform {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 4px;
	box-shadow: 0 18px 44px rgba(29, 32, 29, 0.08);
	padding: 30px 28px 26px;
	margin-top: 28px;
}
body.login label { color: var(--green); font-weight: 700; font-size: 13px; }
body.login input[type="text"],
body.login input[type="password"] {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 2px;
	color: var(--ink);
	padding: 10px 12px;
	box-shadow: none;
}
body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(98, 110, 96, 0.15);
	outline: none;
}
body.login .wp-core-ui .button-primary {
	background: var(--tan);
	border: 1px solid var(--tan-dark);
	border-radius: 2px;
	color: var(--ink);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-shadow: none;
	box-shadow: none;
	padding: 4px 22px;
}
body.login .wp-core-ui .button-primary:hover { background: var(--tan-dark); }
body.login #nav, body.login #backtoblog { text-align: center; }
body.login #nav a, body.login #backtoblog a { color: var(--green-soft); }
body.login #nav a:hover, body.login #backtoblog a:hover { color: var(--ink); }
body.login .message, body.login #login_error {
	border-left: 4px solid var(--green);
	background: var(--white);
	color: var(--ink);
	border-radius: 2px;
	box-shadow: none;
}
body.login::after {
	content: "BUILT & MAINTAINED BY ALLSUPPORT - ALLSUPPORT.CO";
	display: block;
	text-align: center;
	font-size: 10px;
	letter-spacing: 0.22em;
	color: rgba(98, 110, 96, 0.55);
	padding: 20px 0 30px;
}

/* ============================================================
   25  RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.container { padding: 0 24px; }
	.team-grid { grid-template-columns: repeat(3, 1fr); }
	.stylist-hero .container { grid-template-columns: 380px 1fr; gap: var(--space-lg); }
	.grid-2, .split { gap: var(--space-lg); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	/* Hamburger takes over */
	.nav-toggle { display: block; }
	.site-header .container { min-height: 76px; }
	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--cream);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 20px 40px rgba(29, 32, 29, 0.1);
	}
	body.nav-open .site-nav { display: block; }
	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-sm) 0 var(--space-md); }
	.nav-menu a { padding: 13px 32px; font-size: 13px; }
	.nav-menu .nav-cta > a { margin: 10px 32px 0; text-align: center; }
	/* Mobile submenus stay open and indented */
	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		background: transparent;
		padding: 0;
	}
	.nav-menu .sub-menu a { padding-left: 52px; font-size: 12px; }
	.utility-bar__info span.utility-address { display: none; }
	.home-hero { min-height: 60vh; }
	.stylist-hero .container { grid-template-columns: 1fr; }
	.stylist-hero__photo { max-width: 420px; }
	.contact-layout { grid-template-columns: 1fr; }
	.hours-panel { grid-template-columns: 1fr; }
	.site-footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.section { padding: var(--space-2xl) 0; }
	.grid-2, .split { grid-template-columns: 1fr; }
	.split__media,
	.split--flip .split__media { order: -1; }
	.team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
	.team-strip { grid-template-columns: repeat(2, 1fr); }
	.photo-strip { grid-template-columns: repeat(2, 1fr); }
	.benefits-list { grid-template-columns: 1fr; }
	.table-hint { display: block; }
	.map-embed iframe { height: 320px; }
	.svc-acc summary { padding: 18px 20px; font-size: 1.2rem; }
	.svc-acc__panel { padding: var(--space-sm) 20px 24px; }
}

@media (max-width: 480px) {
	body { font-size: 15px; }
	.container { padding: 0 18px; }
	.btn { display: block; width: 100%; text-align: center; }
	.btn-group { flex-direction: column; }
	.team-grid { grid-template-columns: 1fr; }
	.team-strip { grid-template-columns: repeat(2, 1fr); }
	.site-footer__main { grid-template-columns: 1fr; gap: var(--space-lg); }
	.error-page .search-form { flex-direction: column; }
	.utility-bar .container { justify-content: center; }
	.utility-bar__social { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		transition: none !important;
		animation: none !important;
	}
	.team-card:hover img,
	.team-card:focus-visible img { transform: none; }
}

/* ============================================================
   26  NAV HOVER OVERRIDE (ABSOLUTE LAST)
   ============================================================ */
.nav-menu a:hover { color: var(--ink); }