/*
Theme Name: Frocurls Naturals
Theme URI: https://frocurlsnaturals.com.ng
Author: 360integree Innovative Project
Author URI: https://360integree.com
Description: A modern, elegant appointment booking theme for Frocurls Naturals — a natural hair brand specializing in microlocs installation, reties, and natural hair services. Features a sage green, deep brown, and cream color palette with organic design elements.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks
Version: 1.0.5
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: frocurls-naturals

Frocurls Naturals WordPress Theme 2026
Frocurls Naturals is distributed under the terms of the GNU GPL
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
	/* Brand Colors */
	--color-cream: #F5F5DC;
	--color-sage: #8A9A5B;
	--color-sage-dark: #72814b;
	--color-sage-light: rgba(138, 154, 91, 0.12);
	--color-sage-medium: rgba(138, 154, 91, 0.15);
	--color-deep-brown: #4E3524;
	--color-soft-brown: #7A5C43;
	--color-white: #FFFFFF;

	/* Typography */
	--font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Font Sizes */
	--text-xs: 0.75rem;
	--text-sm: 0.85rem;
	--text-base: 1rem;
	--text-md: 1.1rem;
	--text-lg: 1.15rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 2rem;
	--text-4xl: 2.5rem;
	--text-5xl: 3.5rem;

	/* Spacing */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 4rem;
	--space-3xl: 6rem;
	--space-4xl: 8rem;

	/* Layout */
	--container-width: 1200px;
	--container-padding: 8%;
	--border-radius-sm: 4px;
	--border-radius-md: 8px;
	--border-radius-lg: 16px;
	--border-radius-pill: 50px;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(78, 53, 36, 0.06);
	--shadow-md: 0 4px 12px rgba(78, 53, 36, 0.08);
	--shadow-lg: 0 20px 40px rgba(78, 53, 36, 0.08);

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.5s ease;

	/* Z-Index Scale */
	--z-dropdown: 100;
	--z-sticky: 200;
	--z-overlay: 300;
	--z-modal: 400;
}

/* ==========================================================================
   CSS Reset (inherited from Blank Slate)
   ========================================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.6;
}

a {
	text-decoration-skip-ink: auto;
}

a[href^="tel"] {
	color: inherit;
	text-decoration: none;
}

button {
	outline: 0;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--color-deep-brown);
	background-color: var(--color-cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-deep-brown);
}

h1 {
	font-size: var(--text-5xl);
	margin-bottom: var(--space-lg);
}

h2 {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-md);
}

h3 {
	font-size: var(--text-3xl);
	margin-bottom: var(--space-md);
}

h4 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-sm);
}

h5 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-sm);
}

h6 {
	font-size: var(--text-lg);
	margin-bottom: var(--space-sm);
}

p {
	margin-bottom: var(--space-md);
	color: var(--color-soft-brown);
	line-height: 1.7;
}

a {
	color: var(--color-sage);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover {
	color: var(--color-sage-dark);
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
	margin: 0 auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}

.screen-reader-text:focus {
	background-color: var(--color-white);
	border-radius: var(--border-radius-sm);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--color-sage);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}

.visually-hidden:not(:focus):not(:active) {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn,
.button,
input[type="submit"],
button[type="submit"] {
	display: inline-block;
	padding: 16px 32px;
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: all var(--transition-base);
	text-align: center;
	line-height: 1;
}

.btn-primary,
.button-primary {
	background-color: var(--color-sage);
	color: var(--color-white) !important;
	box-shadow: 0 4px 12px rgba(138, 154, 91, 0.2);
}

.btn-primary:hover,
.button-primary:hover {
	background-color: var(--color-sage-dark);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(138, 154, 91, 0.3);
}

.btn-secondary,
.button-secondary {
	background-color: transparent;
	color: var(--color-deep-brown);
	border: 2px solid var(--color-deep-brown);
}

.btn-secondary:hover,
.button-secondary:hover {
	background-color: var(--color-deep-brown);
	color: var(--color-white);
}

.btn-sm {
	padding: 10px 20px;
	font-size: var(--text-sm);
}

.btn-lg {
	padding: 20px 40px;
	font-size: var(--text-md);
}

/* ==========================================================================
   Notification Bar
   ========================================================================== */

.notification-bar {
	background-color: var(--color-deep-brown);
	color: var(--color-cream);
	text-align: center;
	padding: 10px var(--container-padding);
	font-size: var(--text-sm);
	letter-spacing: 0.1em;
	font-weight: 500;
	text-transform: uppercase;
}

.notification-bar p {
	margin: 0;
	color: var(--color-cream);
	font-size: inherit;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-sticky);
	background-color: var(--color-cream);
	border-bottom: 1px solid rgba(78, 53, 36, 0.08);
	transition: all var(--transition-base);
}

.site-header.scrolled {
	background-color: rgba(245, 245, 220, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-sm);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding .custom-logo {
	height: 50px;
	width: auto;
	max-width: 200px;
	display: block;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 700;
	color: var(--color-deep-brown);
	text-decoration: none;
	transition: color var(--transition-base);
}

.site-logo:hover {
	color: var(--color-sage);
}

.site-logo .logo-icon {
	color: var(--color-sage);
	font-size: 1.2em;
}

.primary-navigation {
	display: flex;
	align-items: center;
}

.primary-navigation ul {
	display: flex;
	list-style: none;
	gap: var(--space-lg);
	align-items: center;
}

.primary-navigation a {
	text-decoration: none;
	color: var(--color-deep-brown);
	font-weight: 500;
	font-size: var(--text-base);
	transition: color var(--transition-base);
	position: relative;
}

.primary-navigation a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-sage);
	transition: width var(--transition-base);
}

.primary-navigation a:hover,
.primary-navigation a.active {
	color: var(--color-sage);
}

.primary-navigation a:hover::after,
.primary-navigation a.active::after {
	width: 100%;
}

.header-cta {
	margin-left: var(--space-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: var(--z-overlay);
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-deep-brown);
	margin: 6px 0;
	transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/*align-items: center;*/
	padding: var(--space-2xl) var(--container-padding);
	gap: var(--space-3xl);
	min-height: calc(100vh - 100px);
}

.hero-content {
	max-width: 580px;
}

.hero-tagline {
	color: var(--color-sage);
	font-weight: 600;
	text-transform: uppercase;
	font-size: var(--text-sm);
	letter-spacing: 0.2em;
	margin-bottom: var(--space-md);
	display: block;
}

.hero-title {
	font-size: var(--text-5xl);
	line-height: 1.15;
	color: var(--color-deep-brown);
	margin-bottom: var(--space-lg);
}

.hero-title span {
	font-style: italic;
	color: var(--color-sage);
	font-weight: 400;
}

.hero-description {
	font-size: var(--text-lg);
	color: var(--color-soft-brown);
	margin-bottom: var(--space-xl);
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: var(--space-md);
	align-items: center;
	flex-wrap: wrap;
}

/* Hero Visual / Organic Shapes */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
}

.organic-shape {
	position: absolute;
	background-color: var(--color-sage-light);
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	animation: morphing 15s ease-in-out infinite alternate;
}

.organic-shape-1 {
	width: 400px;
	height: 400px;
	top: 10%;
	left: 10%;
}

.organic-shape-2 {
	width: 250px;
	height: 250px;
	bottom: 10%;
	right: 5%;
	background-color: rgba(78, 53, 36, 0.06);
	border-radius: 40% 60% 70% 30% / 50% 60% 30% 60%;
	animation-delay: -5s;
	animation-duration: 12s;
}

@keyframes morphing {
	0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
	50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
	100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ==========================================================================
   Why Choose Us Card
   ========================================================================== */

.why-choose-card {
	position: relative;
	z-index: 2;
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(78, 53, 36, 0.05);
}

.card-tag {
	background-color: var(--color-sage-medium);
	color: var(--color-sage);
	padding: 6px 14px;
	border-radius: var(--border-radius-pill);
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-bottom: var(--space-md);
}

.card-title {
	font-size: var(--text-2xl);
	color: var(--color-deep-brown);
	margin-bottom: var(--space-sm);
	line-height: 1.3;
}

.card-description {
	color: var(--color-soft-brown);
	font-size: var(--text-base);
	margin-bottom: var(--space-lg);
	line-height: 1.6;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--text-base);
	color: var(--color-deep-brown);
	font-weight: 500;
}

.feature-list .check-icon {
	color: var(--color-sage);
	font-weight: bold;
	font-size: var(--text-lg);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
	padding: var(--space-xs) 0 var(--space-4xl) 0;
}

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

.section-dark {
	background-color: var(--color-deep-brown);
	color: var(--color-cream);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
	color: var(--color-cream);
}

.section-dark p {
	color: rgba(245, 245, 220, 0.85);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--space-3xl);
}

.section-header .section-tagline {
	color: var(--color-sage);
	font-weight: 600;
	text-transform: uppercase;
	font-size: var(--text-sm);
	letter-spacing: 0.2em;
	margin-bottom: var(--space-sm);
	display: block;
}

.section-header h2 {
	margin-bottom: var(--space-md);
}

.section-header p {
	font-size: var(--text-md);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-xl);
	align-items: stretch;
}

.service-card {
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(78, 53, 36, 0.05);
	transition: all var(--transition-base);
	text-align: center;
	display: flex;
	flex-direction: column;
}

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

.service-icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-md);
	display: block;
}

.service-card h3 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-sm);
}

.service-card p {
	font-size: var(--text-base);
	color: var(--color-soft-brown);
	margin-bottom: var(--space-lg);
}

.service-description {
	font-size: var(--text-base);
	color: var(--color-soft-brown);
	margin-bottom: var(--space-lg);
	line-height: 1.7;
	flex: 1;
	text-align: left;
}

.service-description p {
	margin-bottom: var(--space-sm);
}

.service-description p:last-child {
	margin-bottom: 0;
}

.service-description ul {
	list-style: none;
	padding: 0;
	margin: var(--space-sm) 0 0;
}

.service-description ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 6px;
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
}

.service-description ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-sage);
	font-weight: 700;
}

.service-card .btn {
	font-size: var(--text-sm);
	padding: 12px 24px;
}

/* ==========================================================================
   LatePoint Bookable Services
   ========================================================================== */

#latepoint-services {
	background-color: var(--color-cream);
}

.latepoint-services-wrap {
	margin-top: var(--space-xl);
}

/* Style LatePoint resource/service cards to match theme */
.latepoint-services-wrap .latepoint-resource-card,
.latepoint-services-wrap .latepoint-service-card,
.latepoint-services-wrap [class*="latepoint"] {
	font-family: var(--font-body);
	color: var(--color-soft-brown);
}

.latepoint-services-wrap .latepoint-btn,
.latepoint-services-wrap .latepoint-resource-card .latepoint-btn,
.latepoint-services-wrap .latepoint-service-card .latepoint-btn {
	background-color: var(--color-sage);
	color: var(--color-white);
	border: none;
	border-radius: var(--border-radius);
	padding: 10px 24px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: var(--text-sm);
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.latepoint-services-wrap .latepoint-btn:hover,
.latepoint-services-wrap .latepoint-resource-card .latepoint-btn:hover,
.latepoint-services-wrap .latepoint-service-card .latepoint-btn:hover {
	background-color: var(--color-sage-dark);
	transform: translateY(-1px);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

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

.testimonial-card {
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(78, 53, 36, 0.05);
}

.testimonial-stars {
	color: var(--color-sage);
	font-size: var(--text-lg);
	margin-bottom: var(--space-md);
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: var(--text-md);
	color: var(--color-soft-brown);
	font-style: italic;
	line-height: 1.7;
	margin-bottom: var(--space-lg);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--color-sage-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--color-sage);
	font-size: var(--text-lg);
}

.testimonial-name {
	font-weight: 600;
	color: var(--color-deep-brown);
	font-size: var(--text-base);
}

.testimonial-role {
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
	text-align: center;
	padding: var(--space-4xl) var(--container-padding);
	background-color: var(--color-deep-brown);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -25%;
	width: 150%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(138, 154, 91, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.cta-section h2 {
	color: var(--color-cream);
	font-size: var(--text-4xl);
	margin-bottom: var(--space-md);
	position: relative;
}

.cta-section p {
	color: rgba(245, 245, 220, 0.85);
	font-size: var(--text-lg);
	max-width: 600px;
	margin: 0 auto var(--space-xl);
	position: relative;
}

.cta-section .btn-primary {
	background-color: var(--color-sage);
	color: var(--color-white);
	position: relative;
}

/* ==========================================================================
   Gallery Page
   ========================================================================== */

.container-wide {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.gallery-section {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-3xl);
}

/* ---- Masonry layout using CSS columns ---- */
.gallery-content {
	column-count: 3;
	column-gap: 16px;
}

.gallery-content .wp-block-gallery,
.gallery-content .blocks-gallery-grid {
	display: block !important;
	column-count: inherit;
	column-gap: inherit;
	border: none !important;
	padding: 0;
}

.gallery-content .wp-block-gallery .wp-block-image,
.gallery-content .blocks-gallery-grid .blocks-gallery-item,
.gallery-content .wp-block-gallery > figure,
.gallery-content .blocks-gallery-grid > figure {
	break-inside: avoid;
	margin-bottom: 16px !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
}

.gallery-content .wp-block-gallery .wp-block-image figure,
.gallery-content .blocks-gallery-grid figure,
.gallery-content figure {
	margin: 0 !important;
	padding: 0;
	border: none;
}

.gallery-content .wp-block-gallery .wp-block-image img,
.gallery-content .blocks-gallery-grid .blocks-gallery-item img,
.gallery-content figure img,
.gallery-content img {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	border-radius: var(--border-radius);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	box-shadow: none;
}

.gallery-content .wp-block-gallery .wp-block-image:hover img,
.gallery-content .blocks-gallery-grid .blocks-gallery-item:hover img {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(78, 53, 36, 0.18);
}

/* WordPress caption styling */
.gallery-content figcaption {
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	text-align: center;
	padding: var(--space-sm) 0 0;
}

/* Reset WordPress inline width/height on gallery images */
.gallery-content [style*="width"] {
	width: 100% !important;
	max-width: 100% !important;
}

.gallery-content img[width],
.gallery-content img[height] {
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
}

/* ---- Lightbox ---- */
.gallery-lightbox {
	display: none !important;
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.93);
	z-index: 99999;
	justify-content: center;
	align-items: center;
}

.gallery-lightbox.active {
	display: flex !important;
}

.lightbox-image-wrap {
	max-width: 90vw;
	max-height: 88vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lightbox-image {
	max-width: 100%;
	max-height: 88vh;
	object-fit: contain;
	border-radius: var(--border-radius);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
	position: fixed;
	top: 20px;
	right: 24px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	line-height: 1;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	transition: background 0.2s ease;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev,
.lightbox-next {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	transition: background 0.2s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Gallery responsive */
@media (max-width: 1024px) {
	.gallery-content {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.gallery-content {
		column-count: 2;
		column-gap: 10px;
	}

	.gallery-content .wp-block-image,
	.gallery-content .blocks-gallery-item {
		margin-bottom: 10px;
	}

	.lightbox-prev,
	.lightbox-next {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}

	.lightbox-prev { left: 10px; }
	.lightbox-next { right: 10px; }
}

@media (max-width: 400px) {
	.gallery-content {
		column-count: 1;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: var(--color-deep-brown);
	color: var(--color-cream);
	padding: var(--space-3xl) 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: var(--space-2xl);
	padding-bottom: var(--space-2xl);
	border-bottom: 1px solid rgba(245, 245, 220, 0.1);
}

.footer-brand .site-logo {
	color: var(--color-cream);
	margin-bottom: var(--space-md);
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-brand .footer-logo {
	width: 50px;
	height: 50px;
	object-fit: contain;
	border-radius: 8px;
}

.footer-brand .site-logo:hover {
	color: var(--color-sage);
}

.footer-brand p {
	color: rgba(245, 245, 220, 0.75);
	font-size: var(--text-base);
	line-height: 1.7;
}

.footer-column h4 {
	color: var(--color-cream);
	font-size: var(--text-lg);
	margin-bottom: var(--space-lg);
	font-family: var(--font-heading);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: var(--space-xs);
}

.footer-column ul a {
	color: rgba(245, 245, 220, 0.75);
	text-decoration: none;
	font-size: var(--text-base);
	transition: color var(--transition-base);
}

.footer-column ul a:hover {
	color: var(--color-sage);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: var(--space-sm);
	color: rgba(245, 245, 220, 0.75);
	font-size: var(--text-base);
}

.footer-contact-item .icon {
	color: var(--color-sage);
	flex-shrink: 0;
	margin-top: 2px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-lg) 0;
	font-size: var(--text-sm);
	color: rgba(245, 245, 220, 0.6);
}

.footer-bottom a {
	color: rgba(245, 245, 220, 0.6);
}

.footer-bottom a:hover {
	color: var(--color-sage);
}

.footer-bottom p {
	color: var(--color-cream)
}

.social-links {
	display: flex;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(245, 245, 220, 0.1);
	color: var(--color-cream);
	text-decoration: none;
	transition: all var(--transition-base);
	font-size: var(--text-lg);
}

.social-links a:hover {
	background-color: var(--color-sage);
	color: var(--color-white);
}

/* ==========================================================================
   Page Templates
   ========================================================================== */

.page-header {
	padding: var(--space-md) 0 var(--space-sm);
	text-align: center;
}

.page-header h1 {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-sm);
}

.page-header .page-description {
	font-size: var(--text-lg);
	color: var(--color-soft-brown);
	max-width: 600px;
	margin: 0 auto;
}

.page-content {
	padding: 0 0 var(--space-3xl);
}

/* Full-width page template */
.page-template-full-width .page-content {
	max-width: none;
	padding: 0;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
	align-items: center;
	padding: var(--space-3xl) 0;
}

.about-hero-image {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-sage-light);
}

.about-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	display: block;
}

.about-hero-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 400px;
}

.about-hero-placeholder span {
	font-size: 8rem;
	line-height: 1;
	opacity: 0.4;
}

.about-content h2 {
	margin-bottom: var(--space-md);
}

.about-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
	padding: var(--space-xs) 0;
}

.value-card {
	text-align: center;
	padding: var(--space-xl);
}

.value-icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-md);
}

/* ==========================================================================
   Services Page
   ========================================================================== */

.services-list {
	display: grid;
	gap: var(--space-xl);
}

.service-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-2xl);
	align-items: center;
	padding: var(--space-xl);
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-sm);
}

.service-detail-visual {
	background: var(--color-sage-light);
	border-radius: var(--border-radius-lg);
	padding: var(--space-2xl);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

.service-detail-icon {
	font-size: 6rem;
	line-height: 1;
}

.service-detail-visual img {
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius-md);
	object-fit: cover;
	/*position: absolute;*/
	top: 0;
	left: 0;
}

.service-icon-img {
	max-width: 70%;
	width: auto;
	height: auto;
	border-radius: var(--border-radius-lg);
	object-fit: contain;
	margin-bottom: var(--space-md);
	display: block;
	align-self: center;
}

.feature-list-wrap {
	margin-bottom: var(--space-lg);
}

.feature-list-wrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list-wrap ul li {
	padding: 4px 0 4px 24px;
	position: relative;
	color: var(--color-soft-brown);
}

.feature-list-wrap ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-sage);
	font-weight: 700;
}

/* ==========================================================================
   Booking Page
   ========================================================================== */

.booking-page-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: var(--space-xl) 0;
}

/* Ensure LatePoint widget centers and handles side panel properly */
.booking-page-content .latepoint-w {
	max-width: 100%;
	margin: 0 auto;
}

.booking-page-content .latepoint-booking-form-element {
	min-width: 0;
}

.booking-page-content .latepoint-side-panel {
	min-width: 250px;
	flex-shrink: 0;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
}

.contact-info-card {
	background-color: var(--color-deep-brown);
	color: var(--color-cream);
	padding: var(--space-xl);
	border-radius: var(--border-radius-lg);
}

.contact-info-card h3 {
	color: var(--color-cream);
}

.contact-info-card p {
	color: rgba(245, 245, 220, 0.85);
}

/* ==========================================================================
   Policies Page
   ========================================================================== */

.policies-content {
	max-width: 800px;
	margin: 0 auto;
}

.policy-section {
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-2xl);
	border-bottom: 1px solid rgba(78, 53, 36, 0.1);
}

.policy-section:last-child {
	border-bottom: none;
}

.policy-section h3 {
	color: var(--color-sage);
	margin-bottom: var(--space-md);
}

.policy-highlight {
	background-color: var(--color-sage-light);
	padding: var(--space-md) var(--space-lg);
	border-radius: var(--border-radius-md);
	border-left: 4px solid var(--color-sage);
	margin: var(--space-md) 0;
}

.policy-highlight strong {
	color: var(--color-deep-brown);
}

/* ==========================================================================
   Blog / Archive Styles
   ========================================================================== */

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

.post-card {
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.post-thumbnail {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.post-card-content {
	padding: var(--space-lg);
}

.post-card-content h2 {
	font-size: var(--text-xl);
}

.post-card-content h2 a {
	color: var(--color-deep-brown);
	text-decoration: none;
}

.post-card-content h2 a:hover {
	color: var(--color-sage);
}

.entry-meta {
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	margin-bottom: var(--space-sm);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
	text-align: center;
	padding: var(--space-4xl) var(--container-padding);
}

.error-404 h1 {
	font-size: 8rem;
	color: var(--color-sage);
	margin-bottom: var(--space-sm);
	line-height: 1;
}

.error-404 h2 {
	font-size: var(--text-3xl);
	margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Search Results
   ========================================================================== */

.search-results-header {
	padding: var(--space-3xl) 0 var(--space-xl);
	text-align: center;
}

.search-results-header h1 {
	font-size: var(--text-3xl);
}

.search-form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	gap: var(--space-sm);
}

.search-form input[type="search"] {
	flex: 1;
	padding: 14px 20px;
	border: 2px solid rgba(78, 53, 36, 0.15);
	border-radius: var(--border-radius-sm);
	font-family: var(--font-body);
	font-size: var(--text-base);
	background-color: var(--color-white);
	color: var(--color-deep-brown);
	transition: border-color var(--transition-base);
}

.search-form input[type="search"]:focus {
	border-color: var(--color-sage);
	outline: none;
}

.search-form button[type="submit"] {
	padding: 14px 28px;
}

/* ==========================================================================
   Widgets
   ========================================================================== */

.widget {
	margin-bottom: var(--space-xl);
}

.widget-title {
	font-size: var(--text-lg);
	margin-bottom: var(--space-md);
	padding-bottom: var(--space-xs);
	border-bottom: 2px solid var(--color-sage-light);
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
	margin-top: var(--space-2xl);
	padding-top: var(--space-2xl);
	border-top: 1px solid rgba(78, 53, 36, 0.1);
}

.comment-list {
	margin-bottom: var(--space-xl);
}

.comment {
	margin-bottom: var(--space-lg);
	padding: var(--space-lg);
	background-color: var(--color-white);
	border-radius: var(--border-radius-md);
}

.comment-author {
	font-weight: 600;
	color: var(--color-deep-brown);
	margin-bottom: var(--space-xs);
}

.comment-metadata {
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	margin-bottom: var(--space-sm);
}

.comment-metadata a {
	color: var(--color-soft-brown);
}

.comment-respond {
	margin-top: var(--space-xl);
}

.comment-respond h3 {
	font-size: var(--text-2xl);
}

.comment-form label {
	display: block;
	font-weight: 500;
	margin-bottom: var(--space-xs);
	color: var(--color-deep-brown);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid rgba(78, 53, 36, 0.15);
	border-radius: var(--border-radius-sm);
	font-family: var(--font-body);
	font-size: var(--text-base);
	background-color: var(--color-white);
	color: var(--color-deep-brown);
	margin-bottom: var(--space-md);
	transition: border-color var(--transition-base);
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--color-sage);
	outline: none;
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

/* ==========================================================================
   Navigation (Pagination)
   ========================================================================== */

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: var(--space-xs);
	margin-top: var(--space-2xl);
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 2px solid rgba(78, 53, 36, 0.15);
	border-radius: var(--border-radius-sm);
	text-decoration: none;
	color: var(--color-deep-brown);
	font-weight: 500;
	transition: all var(--transition-base);
}

.page-numbers:hover,
.page-numbers.current {
	background-color: var(--color-sage);
	border-color: var(--color-sage);
	color: var(--color-white);
}

/* ==========================================================================
   WordPress Block Styles
   ========================================================================== */

.wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xl);
}

.wp-block-column {
	flex: 1;
	min-width: 250px;
}

.wp-block-group {
	margin-bottom: var(--space-xl);
}

.wp-block-separator {
	border: none;
	border-top: 2px solid rgba(78, 53, 36, 0.1);
	margin: var(--space-2xl) auto;
	max-width: 100px;
}

.wp-block-quote {
	border-left: 4px solid var(--color-sage);
	padding-left: var(--space-lg);
	margin: var(--space-xl) 0;
	font-style: italic;
	color: var(--color-soft-brown);
}

.wp-block-quote cite {
	display: block;
	margin-top: var(--space-sm);
	font-size: var(--text-sm);
	color: var(--color-deep-brown);
	font-style: normal;
	font-weight: 600;
}

/* ==========================================================================
   LatePoint Booking Plugin Styles
   ========================================================================== */

/* Booking Form Container — clean, spacious, minimal */
.wp-block-latepoint-booking-form,
.latepoint-booking-form-container {
	background-color: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: var(--space-2xl) 0 !important;
	margin: var(--space-xl) 0 !important;
}

/* Hide side panel — biggest clutter source */
.booking-page-content .latepoint-side-panel {
	display: none !important;
}

/* Hide step indicator — form flow is self-explanatory */
.booking-page-content .latepoint-steps-indicator {
	display: none !important;
}

/* Make form full-width and spacious */
.booking-page-content .latepoint-w {
	max-width: 800px !important;
	margin: 0 auto !important;
	flex-direction: column !important;
	padding: 0 var(--space-lg) !important;
}

/* Booking Button */
.wp-block-latepoint-booking-button .latepoint-btn,
.latepoint-btn {
	display: inline-block;
	padding: 16px 32px;
	background-color: var(--color-sage);
	color: var(--color-white);
	border: none;
	border-radius: var(--border-radius-sm);
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-base);
	text-decoration: none;
	text-align: center;
	box-shadow: 0 4px 12px rgba(138, 154, 91, 0.2);
}

.wp-block-latepoint-booking-button .latepoint-btn:hover,
.latepoint-btn:hover {
	background-color: var(--color-sage-dark);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(138, 154, 91, 0.3);
}

/* Booking Steps — hidden via .booking-page-content override above */

.latepoint-step-indicator {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
}

.latepoint-step-indicator.active {
	color: var(--color-sage);
	font-weight: 600;
}

.latepoint-step-indicator .step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: rgba(78, 53, 36, 0.1);
	color: var(--color-soft-brown);
	font-weight: 600;
	font-size: var(--text-sm);
}

.latepoint-step-indicator.active .step-number {
	background-color: var(--color-sage);
	color: var(--color-white);
}

.latepoint-step-indicator.completed .step-number {
	background-color: var(--color-sage);
	color: var(--color-white);
}

/* Booking Form Fields — spacious, readable */
.latepoint-form-group {
	margin-bottom: var(--space-lg) !important;
}

.latepoint-form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: var(--space-sm);
	color: var(--color-deep-brown);
	font-size: var(--text-base);
}

.latepoint-form-group input,
.latepoint-form-group select,
.latepoint-form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid rgba(78, 53, 36, 0.15);
	border-radius: var(--border-radius-sm);
	font-family: var(--font-body);
	font-size: var(--text-base);
	background-color: var(--color-white);
	color: var(--color-deep-brown);
	transition: border-color var(--transition-base);
}

.latepoint-form-group input:focus,
.latepoint-form-group select:focus,
.latepoint-form-group textarea:focus {
	border-color: var(--color-sage);
	outline: none;
	box-shadow: 0 0 0 3px rgba(138, 154, 91, 0.1);
}

/* Navigation buttons — clear, accessible */
.latepoint-btn-next,
.latepoint-btn-back,
.latepoint-btn-submit {
	padding: 16px 32px !important;
	font-size: var(--text-base) !important;
	font-weight: 600 !important;
	border-radius: var(--border-radius-sm) !important;
	transition: all var(--transition-base) !important;
}

.latepoint-btn-back {
	background: transparent !important;
	border: 2px solid rgba(78, 53, 36, 0.2) !important;
	color: var(--color-deep-brown) !important;
}

.latepoint-btn-back:hover {
	border-color: var(--color-sage) !important;
	color: var(--color-sage) !important;
}

/* Calendar */
.latepoint-calendar-wrapper {
	background-color: var(--color-white);
	border-radius: var(--border-radius-md);
	padding: var(--space-lg);
	box-shadow: var(--shadow-sm);
}

.latepoint-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-md);
}

.latepoint-calendar-nav {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 12px;
	color: var(--color-deep-brown);
	font-size: var(--text-lg);
	transition: color var(--transition-base);
}

.latepoint-calendar-nav:hover {
	color: var(--color-sage);
}

.latepoint-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.latepoint-calendar-day-header {
	font-weight: 600;
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	padding: var(--space-xs);
}

.latepoint-calendar-day {
	padding: var(--space-xs);
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: all var(--transition-base);
}

.latepoint-calendar-day:hover {
	background-color: var(--color-sage-light);
}

.latepoint-calendar-day.selected {
	background-color: var(--color-sage);
	color: var(--color-white);
}

.latepoint-calendar-day.disabled {
	color: rgba(78, 53, 36, 0.3);
	cursor: not-allowed;
}

.latepoint-calendar-day.disabled:hover {
	background-color: transparent;
}

/* Time Slots */
.latepoint-timeslots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.latepoint-timeslot {
	padding: 12px;
	border: 2px solid rgba(78, 53, 36, 0.15);
	border-radius: var(--border-radius-sm);
	text-align: center;
	cursor: pointer;
	transition: all var(--transition-base);
	font-weight: 500;
}

.latepoint-timeslot:hover {
	border-color: var(--color-sage);
	color: var(--color-sage);
}

.latepoint-timeslot.selected {
	background-color: var(--color-sage);
	border-color: var(--color-sage);
	color: var(--color-white);
}

/* Customer Dashboard */
.latepoint-customer-dashboard {
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-sm);
}

.latepoint-customer-dashboard h3 {
	color: var(--color-deep-brown);
	margin-bottom: var(--space-lg);
}

/* Customer Login */
.latepoint-customer-login {
	max-width: 400px;
	margin: 0 auto;
	background-color: var(--color-white);
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	box-shadow: var(--shadow-sm);
}

/* Service/Agent Cards — clean, minimal, border-bottom only */
.service-card,
.latepoint-service-card,
.latepoint-agent-card,
.os-service-selector {
	background: none !important;
	border: none !important;
	border-bottom: 1px solid rgba(78, 53, 36, 0.1) !important;
	border-radius: 0 !important;
	padding: var(--space-lg) 0 !important;
	box-shadow: none !important;
	transition: all var(--transition-base);
	cursor: pointer;
}

.service-card:hover,
.latepoint-service-card:hover,
.latepoint-agent-card:hover,
.os-service-selector:hover {
	background-color: rgba(138, 154, 91, 0.04) !important;
	border-bottom-color: var(--color-sage) !important;
}

.service-card.selected,
.latepoint-service-card.selected,
.latepoint-agent-card.selected {
	background-color: rgba(138, 154, 91, 0.08) !important;
	border-bottom-color: var(--color-sage) !important;
}

/* Service pricing — larger, clearer text (fixes "font too tiny" complaint) */
.os-item-price,
.spi-price,
.latepoint-service-price {
	font-size: var(--text-lg) !important;
	font-weight: 600 !important;
	color: var(--color-deep-brown) !important;
	letter-spacing: -0.01em !important;
}

/* Service title — slightly larger for hierarchy */
.latepoint-step-desc-title,
.latepoint-desc-title,
.latepoint-service-name,
.latepoint-service-title {
	font-size: var(--text-md) !important;
	font-weight: 600 !important;
	color: var(--color-deep-brown) !important;
}

/* Service description — clearer, more readable */
.latepoint-desc-content,
.latepoint-step-desc,
.latepoint-service-description {
	font-size: var(--text-base) !important;
	color: var(--color-soft-brown) !important;
	line-height: 1.6 !important;
}

/* Category cards — clean, minimal */
.service-card,
.latepoint-category-card,
.os-service-selector {
	background: none !important;
	border: none !important;
	border-bottom: 1px solid rgba(78, 53, 36, 0.1) !important;
	border-radius: 0 !important;
	padding: var(--space-lg) 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: all var(--transition-base);
}

.service-card:hover,
.latepoint-category-card:hover,
.os-service-selector:hover {
	background-color: rgba(138, 154, 91, 0.04) !important;
	border-bottom-color: var(--color-sage) !important;
}

.latepoint-step-desc-title {
	font-size: var(--text-md) !important;
	font-weight: 600 !important;
	color: var(--color-deep-brown) !important;
}

/* Timeslots — clean grid */
.latepoint-timeslots {
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
	gap: var(--space-sm) !important;
}

.latepoint-timeslot {
	padding: 14px !important;
	font-size: var(--text-base) !important;
	border-width: 1px !important;
}

/* Back button — consistent with navigation */
.latepoint-btn-back {
	padding: 12px 24px !important;
	font-size: var(--text-sm) !important;
	font-weight: 500 !important;
}

/* ==========================================================================
   Booking Services — Expandable Accordion
   ========================================================================== */

.booking-services-wrap {
	max-width: 900px;
	margin: 0 auto;
}

/* Category (accordion item) */
.booking-category {
	border-bottom: 1px solid rgba(78, 53, 36, 0.1);
}

.booking-category:first-child {
	border-top: 1px solid rgba(78, 53, 36, 0.1);
}

/* Category header (toggle button) */
.booking-category-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--space-lg) 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-heading);
	transition: background-color var(--transition-fast);
}

.booking-category-header:hover {
	background-color: rgba(138, 154, 91, 0.04);
}

.booking-category-info {
	flex: 1;
	padding-right: var(--space-md);
}

.booking-category-title {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 600;
	color: var(--color-deep-brown);
	margin-bottom: var(--space-xs);
	line-height: 1.3;
}

.booking-category-desc {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--color-soft-brown);
	line-height: 1.6;
	margin: 0;
}

/* Chevron icon */
.booking-category-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--color-soft-brown);
	transition: transform var(--transition-base);
}

.booking-category-header[aria-expanded="true"] .booking-category-icon {
	transform: rotate(180deg);
}

/* Category content (accordion panel) */
.booking-category-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-slow) ease;
}

.booking-category-content[aria-hidden="false"] {
	max-height: 2000px;
}

.booking-category-inner {
	padding: 0 0 var(--space-xl) 0;
}

/* Service block */
.booking-service {
	padding: var(--space-md) 0;
	border-top: 1px solid rgba(78, 53, 36, 0.06);
}

.booking-service:first-child {
	border-top: none;
}

/* Single-tier service (inline) */
.booking-service-single {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
}

.booking-service-info {
	flex: 1;
}

.booking-service-name {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-deep-brown);
	margin-bottom: var(--space-xs);
}

.booking-service-subtitle {
	display: block;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	font-style: italic;
	margin-top: -0.25rem;
	margin-bottom: var(--space-xs);
}

.booking-service-desc {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	line-height: 1.6;
	margin-bottom: var(--space-sm);
}

.booking-service-action {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	flex-shrink: 0;
}

.booking-service-price {
	font-family: var(--font-body);
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-deep-brown);
	white-space: nowrap;
}

/* Multi-tier service */
.booking-service-multi {
	padding-left: 0;
}

.booking-service-header {
	margin-bottom: var(--space-sm);
}

/* Tier rows */
.booking-tiers {
	display: flex;
	flex-direction: column;
}

.booking-tier {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-sm) 0;
	border-bottom: 1px solid rgba(78, 53, 36, 0.06);
	gap: var(--space-md);
}

.booking-tier:last-child {
	border-bottom: none;
}

.booking-tier-info {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	flex: 1;
}

.booking-tier-label {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--color-soft-brown);
	min-width: 160px;
}

.booking-tier-price {
	font-family: var(--font-body);
	font-size: var(--text-md);
	font-weight: 600;
	color: var(--color-deep-brown);
	white-space: nowrap;
}

/* Book Now button */
.booking-book-btn {
	white-space: nowrap;
	flex-shrink: 0;
}

/* Notes section */
.booking-note {
	margin-top: var(--space-lg);
	padding: var(--space-md);
	background: rgba(138, 154, 91, 0.06);
	border-left: 3px solid var(--color-sage);
	border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.booking-note p {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	color: var(--color-soft-brown);
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
	.hero-section {
		grid-template-columns: 1fr;
		padding: var(--space-3xl) var(--container-padding);
		min-height: auto;
	}

	.hero-visual {
		min-height: 400px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-hero {
		grid-template-columns: 1fr;
	}

	.about-values {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-detail {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	/* Booking Page */
	.booking-page-content {
		max-width: 100%;
		padding: var(--space-lg) var(--container-padding);
	}

	.booking-page-content .latepoint-side-panel {
		min-width: 200px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	:root {
		--text-5xl: 2.5rem;
		--text-4xl: 2rem;
		--text-3xl: 1.75rem;
		--container-padding: 6%;
	}

	/* Mobile Header */
	.site-branding .custom-logo {
		height: 40px;
		max-width: 150px;
	}

	/* Mobile Navigation */
	.primary-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 320px;
		height: 100vh;
		background-color: var(--color-cream);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: var(--space-xl);
		transition: right var(--transition-base);
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
		z-index: var(--z-overlay);
	}

	.primary-navigation.active {
		right: 0;
	}

	.primary-navigation ul {
		flex-direction: column;
		gap: var(--space-lg);
		text-align: center;
	}

	.primary-navigation a {
		font-size: var(--text-xl);
	}

	.header-cta {
		margin-left: 0;
	}

	.menu-toggle {
		display: block;
	}

	/* Mobile Menu Overlay */
	.nav-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(78, 53, 36, 0.5);
		z-index: calc(var(--z-overlay) - 1);
	}

	.nav-overlay.active {
		display: block;
	}

	/* Hero */
	.hero-section {
		padding: var(--space-2xl) var(--container-padding);
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-visual {
		min-height: 350px;
	}

	.organic-shape-1 {
		width: 280px;
		height: 280px;
	}

	.organic-shape-2 {
		width: 180px;
		height: 180px;
	}

	/* Testimonials */
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand {
		text-align: center;
	}

	.footer-brand .site-logo {
		justify-content: center;
	}

	.social-links {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: var(--space-sm);
		text-align: center;
	}

	/* About */
	.about-values {
		grid-template-columns: 1fr;
	}

	/* Time Slots */
	.latepoint-timeslots {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Posts */
	.posts-grid {
		grid-template-columns: 1fr;
	}

	/* Booking Services — Mobile */
	.booking-category-title {
		font-size: var(--text-xl);
	}

	/* Services Page — Mobile */
	.service-detail {
		padding: var(--space-lg);
	}

	.service-detail-visual {
		min-height: 300px;
		padding: 0;
	}

	.service-icon-img {
		max-width: 100%;
		width: 100%;
		height: 300px;
		object-fit: cover;
		border-radius: var(--border-radius-md);
	}

	.booking-service-single {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-sm);
	}

	.booking-service-action {
		width: 100%;
		justify-content: space-between;
	}

	.booking-tier {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-sm);
	}

	.booking-tier-info {
		width: 100%;
		justify-content: space-between;
	}

	.booking-tier-label {
		min-width: auto;
	}

	.booking-book-btn {
		width: 100%;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	/* Small Mobile Header */
	.site-branding .custom-logo {
		height: 35px;
		max-width: 130px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.latepoint-timeslots {
		grid-template-columns: 1fr;
	}

	/* Services Page — Small Mobile */
	.service-detail {
		padding: var(--space-md);
	}

	.service-detail-visual {
		min-height: 250px;
	}

	.service-icon-img {
		height: 250px;
	}
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid var(--color-sage);
	outline-offset: 2px;
}

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

	html {
		scroll-behavior: auto;
	}
}

/* High contrast */
@media (prefers-contrast: high) {
	:root {
		--color-sage: #5a6b3a;
		--color-deep-brown: #2a1a10;
		--color-soft-brown: #4a3020;
	}
}
