/*
Theme Name: Painted Bloom Studio
Theme URI: https://paintedbloomstudio.com
Author: Mozaix Digital
Author URI: https://mozaixdigital.com
Description: A custom theme for Painted Bloom Studio — handcrafted, nature-inspired artwork by Lori Nelson. Earthy sage minimal design, mobile-first.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: painted-bloom
*/

/* ============================================
   PAINTED BLOOM STUDIO
   Earthy Sage Minimal Design — Mobile First
   ============================================ */

/* --- RESET & CUSTOM PROPERTIES --- */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Primary palette (60/30/10) */
	--linen: #faf8f4;
	--linen-mid: #f0ece4;
	--linen-dark: #e4ddd2;
	--sage: #7a8c6e;
	--sage-dark: #5a6e4e;
	--sage-light: #a3b396;
	--sage-pale: #c5d4b8;
	--copper: #c2784e;
	--copper-light: #d4956e;
	--copper-pale: #e8c4a8;

	/* Supporting */
	--teal: #2a7a7a;
	--gold: #b8965a;
	--black: #1a1a1a;
	--charcoal: #2a2a2a;
	--text-dark: #3a3a3a;
	--text-mid: #000000;
	--text-light: #9a9a9a;

	/* Typography */
	--font-heading: "Cinzel", serif;
	--font-body: "Lato", sans-serif;

	/* Spacing scale */
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 40px;
	--space-xl: 60px;
	--space-2xl: 80px;
	--space-3xl: 100px;

	/* Transitions */
	--transition: 0.3s ease;
}

.teal {
	color: var(--teal);
}

/* --- ACCESSIBILITY UTILITIES --- */

/* Visually hidden — content available to screen readers, invisible on screen */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Skip to main content link — visible when focused via keyboard */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--sage-dark);
	color: var(--linen);
	font-family: var(--font-body);
	font-size: 1rem;
	letter-spacing: 1px;
	padding: 12px 20px;
  margin: 1rem;
	text-decoration: none;
	z-index: 1000;
	border-radius: 0 0 4px 0;
	transition: top var(--transition);
}

.skip-link:focus {
	top: 0;
	outline: 2px solid var(--copper);
	outline-offset: 2px;
}

/* Universal focus-visible styles for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--copper);
	outline-offset: 3px;
	border-radius: 2px;
}

/* Remove outline for mouse clicks — keyboard only */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
	outline: none;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* --- BASE TYPOGRAPHY --- */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background-color: var(--linen);
	color: var(--text-dark);
	line-height: 1.7;
	font-weight: 300;
	font-size: 15px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
	color: var(--black);
}

h1 {
	font-size: 34px;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 16px;
}

p {
	color: var(--text-mid);
	font-weight: 300;
  font-size: 1.1rem;
	line-height: 1.8;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.container--narrow {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 20px;
}

.container--mid {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- REUSABLE LABELS --- */
.label {
	font-family: var(--font-body);
	font-style: normal;
	font-size: 1.1rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: var(--space-sm);
}

.label--sage {
	color: var(--sage);
}
.label--copper {
	color: var(--copper);
}
.label--sage-pale {
	color: var(--sage-pale);
}

/* --- BUTTONS --- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-style: normal;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 14px 35px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	text-align: center;
}

.btn--primary {
	background: var(--copper);
	color: var(--linen);
}

.btn--primary:hover {
	background: var(--copper-light);
}

.btn--outline {
	background: transparent;
	border: 1px solid var(--sage);
	color: var(--sage-dark);
}

.btn--outline:hover {
	background: var(--sage-dark);
	color: var(--linen);
	border-color: var(--sage-dark);
}

.btn--outline-light {
	background: transparent;
	border: 1px solid rgba(250, 248, 244, 0.3);
	color: var(--linen);
}

.btn--outline-light:hover {
	background: rgba(250, 248, 244, 0.1);
	border-color: var(--copper);
	color: var(--copper);
}

/* --- DIVIDERS --- */
.divider {
	width: 60px;
	height: 1px;
	background: var(--sage-light);
}

.divider--copper {
	width: 40px;
	height: 2px;
	background: var(--copper);
}

.divider--center {
	margin-left: auto;
	margin-right: auto;
}

/* --- FORM ELEMENTS --- */
input,
textarea,
select {
	font-family: var(--font-body);
	font-size: 1.1rem;
	color: var(--text-dark);
	background: var(--linen);
	border: 1px solid var(--linen-dark);
	border-radius: 4px;
	padding: 14px 18px;
	width: 100%;
	outline: none;
	transition: border-color var(--transition);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--sage);
}

textarea {
	resize: vertical;
	min-height: 140px;
}

label {
	display: block;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text-mid);
	font-weight: 500;
	margin-bottom: 6px;
}

/* Checkbox/radio labels */
.check-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	color: var(--text-dark);
	cursor: pointer;
}

.check-label input[type="checkbox"],
.check-label input[type="radio"] {
	width: auto;
	accent-color: var(--copper);
}

/* --- NAVIGATION --- */
.site-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	gap: 0;
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--black);
}

.nav-brand {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--linen);
	text-decoration: none;
	white-space: nowrap;
}

.nav-links {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.nav-links a {
	font-size: 1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(250, 248, 244, 0.75);
	font-weight: 400;
	transition: color var(--transition);
}

.nav-links a:hover {
	color: var(--sage-dark);
}

.nav-links a.active {
	padding-bottom: 0.2rem;
	border-bottom: 0.1rem solid var(--gold);
}

.nav-divider {
	width: 60px;
	height: 1px;
	background: var(--sage-light);
	display: none;
	transition: opacity 0.4s ease;
}

/* Hamburger button */
.nav-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--linen);
	transition: all var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile dropdown */
.nav-links.is-open {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--gold);
	z-index: 99;
	padding: 10px 0;
}

/* --- FOOTER --- */
.site-footer {
	padding: var(--space-lg) 20px;
	text-align: center;
	border-top: 1px solid var(--linen-dark);
}

.footer-logo img {
	height: 80px;
	width: auto;
	margin: 0 auto var(--space-sm);
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: var(--space-md);
}

.footer-links a {
	color: var(--text-mid);
	font-size: 12px;
	letter-spacing: 1px;
}

.footer-links a:hover {
	color: var(--copper);
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: var(--space-md);
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--linen-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-mid);
	font-size: 12px;
	font-weight: 500;
	transition: all var(--transition);
}

.footer-social a:hover {
	border-color: var(--copper);
	color: var(--copper);
}

.footer-copy {
	font-size: 11px;
	color: var(--text-light);
}

/* ============================================
   HOME PAGE
   ============================================ */

/* --- Hero --- */
.hero {
	text-align: center;
	padding: var(--space-xl) 20px var(--space-2xl);
}

.hero-logo {
	height: 160px;
	width: auto;
	margin: 0 auto var(--space-lg);
}

.hero-title {
	margin-bottom: var(--space-md);
}

.hero-accent {
	color: var(--sage-dark);
}

.hero-desc {
	max-width: 500px;
	margin: 0 auto var(--space-lg);
	font-size: 15px;
}

/* --- Featured Image --- */
.featured-image {
	padding: 0 20px;
	max-width: 1100px;
	margin: 0 auto;
}

.featured-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
}

.featured-placeholder {
	width: 100%;
	height: 250px;
	background: linear-gradient(
		135deg,
		var(--sage-light),
		var(--sage-pale),
		var(--linen-dark)
	);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-mid);
}

/* --- About Preview --- */
.about-preview {
	text-align: center;
	padding: var(--space-2xl) 20px;
}

.about-preview h2 {
	margin-bottom: var(--space-md);
}

.about-preview p {
	margin-bottom: var(--space-md);
}

.about-preview .divider--copper {
	margin: var(--space-md) auto 0;
}

.text-link {
	color: var(--copper);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 1px solid var(--copper);
	padding-bottom: 2px;
	display: inline-block;
	margin-top: var(--space-md);
}

.text-link:hover {
	color: var(--copper-light);
	border-color: var(--copper-light);
}

/* --- Services --- */
.services {
	padding: var(--space-xl) 20px;
	background: var(--sage-dark);
	color: var(--linen);
}

.services .label {
	color: var(--sage-pale);
}

.services h2 {
	color: var(--linen);
	text-align: center;
	margin-bottom: var(--space-lg);
}

.service-list {
	display: flex;
	flex-direction: column;
}

.service-item {
	padding: var(--space-md) 0;
	border-top: 1px solid rgba(163, 179, 150, 0.3);
}

.service-item:last-child {
	border-bottom: 1px solid rgba(163, 179, 150, 0.3);
}

.service-item h3 {
	color: var(--linen);
	margin-bottom: var(--space-xs);
}

.service-item p {
	color: rgba(250, 248, 244, 0.65);
	font-size: 1.1rem;
	margin-bottom: var(--space-sm);
}

.service-item .service-link {
	color: var(--copper-light);
	font-size: 1.1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
}

.service-item .service-link:hover {
	color: var(--copper);
}

/* Coming Soon variant */
.service-item--soon {
	opacity: 0.55;
}

.service-item--soon .coming-soon-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-style: normal;
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: rgba(250, 248, 244, 0.12);
	color: var(--sage-pale);
	padding: 4px 12px;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
}

/* --- Gallery Preview --- */
.gallery-preview {
	padding: var(--space-2xl) 20px;
}

.gallery-preview .label,
.gallery-preview h2 {
	text-align: center;
}

.gallery-preview h2 {
	margin-bottom: var(--space-lg);
}

.gallery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.gallery-card {
	cursor: pointer;
}

.gallery-card-image {
	aspect-ratio: 4/5;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 12px;
}

.gallery-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-image img {
	transform: scale(1.04);
}

.gallery-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-mid);
	transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-placeholder {
	transform: scale(1.04);
}

/* Gallery card gradient variants */
.gallery-card:nth-child(6n + 1) .gallery-card-placeholder {
	background: linear-gradient(135deg, var(--sage-pale), var(--linen-dark));
}
.gallery-card:nth-child(6n + 2) .gallery-card-placeholder {
	background: linear-gradient(135deg, var(--linen-dark), var(--copper-pale));
}
.gallery-card:nth-child(6n + 3) .gallery-card-placeholder {
	background: linear-gradient(135deg, var(--copper-pale), var(--sage-pale));
}
.gallery-card:nth-child(6n + 4) .gallery-card-placeholder {
	background: linear-gradient(135deg, var(--sage-light), var(--linen-mid));
}
.gallery-card:nth-child(6n + 5) .gallery-card-placeholder {
	background: linear-gradient(135deg, var(--linen-mid), var(--sage-pale));
}
.gallery-card:nth-child(6n + 6) .gallery-card-placeholder {
	background: linear-gradient(135deg, var(--copper-pale), var(--linen-dark));
}

.gallery-card h3 {
	font-size: 16px;
	margin-bottom: 4px;
}

.gallery-card span {
	font-size: 11px;
	color: var(--sage);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.gallery-more {
	text-align: center;
	margin-top: var(--space-lg);
}

/* --- Testimonial --- */
.testimonial {
	background: var(--linen-mid);
	padding: var(--space-xl) 20px;
	text-align: center;
}

.testimonial blockquote {
	font-family: var(--font-heading);
	font-size: 22px;
	font-style: italic;
	line-height: 1.5;
	color: var(--text-dark);
	margin-bottom: var(--space-md);
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial blockquote::before {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: var(--copper);
	margin: 0 auto var(--space-md);
}

.testimonial cite {
	font-style: normal;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sage);
	font-weight: 500;
}

/* --- Newsletter --- */
.newsletter {
	padding: var(--space-xl) 20px;
	text-align: center;
}

.newsletter h2 {
	margin-bottom: 10px;
}

.newsletter > p {
	margin-bottom: var(--space-md);
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-form .btn {
	width: 100%;
}

/* --- CTA Section --- */
.cta-section {
	padding: var(--space-xl) 20px;
	background: var(--sage-dark);
	text-align: center;
	color: var(--linen);
}

.cta-section h2 {
	color: var(--linen);
	margin-bottom: 12px;
}

.cta-section p {
	color: rgba(250, 248, 244, 0.7);
	margin-bottom: var(--space-md);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
	text-align: center;
	padding: var(--space-xl) 20px;
}

.about-hero h1 {
	margin-bottom: var(--space-sm);
}

.about-hero p {
	max-width: 550px;
	margin: 0 auto;
}

/* Artist Story */
.artist-story {
	padding: var(--space-xl) 20px;
}

.artist-story-inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	max-width: 1100px;
	margin: 0 auto;
}

.artist-story-text h2 {
	margin-bottom: var(--space-sm);
}

.artist-story-text p {
	margin-bottom: var(--space-sm);
}

.artist-story-text p:last-child {
	margin-bottom: 0;
}

.artist-story-image {
	aspect-ratio: 4/5;
	border-radius: 6px;
	overflow: hidden;
}

.artist-story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

.image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: linear-gradient(
		135deg,
		var(--sage-light),
		var(--sage-pale),
		var(--linen-dark)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-mid);
	border-radius: 6px;
}

/* Process Section */
.process {
	padding: var(--space-xl) 20px;
	background: var(--linen-mid);
	text-align: center;
}

.process h2 {
	margin-bottom: var(--space-lg);
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	max-width: 900px;
	margin: 0 auto;
}

.process-step {
	text-align: center;
}

.step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--copper);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 20px;
	color: var(--copper);
	margin: 0 auto var(--space-sm);
	font-style: normal;
}

.process-step h3 {
	margin-bottom: 8px;
}

.process-step p {
	font-size: 1rem;
	max-width: 280px;
	margin: 0 auto;
}

/* Values Section */
.values {
	padding: var(--space-xl) 20px;
	text-align: center;
}

.values h2 {
	margin-bottom: var(--space-lg);
}

.values-grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	max-width: 800px;
	margin: 0 auto;
}

.value-item h3 {
	font-size: 20px;
	margin-bottom: 6px;
	color: var(--sage-dark);
}

.value-item p {
	font-size: 1rem;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-page-header {
	text-align: center;
	padding: var(--space-xl) 20px var(--space-md);
}

.gallery-page-header h1 {
	margin-bottom: var(--space-sm);
}

.gallery-page-header p {
	max-width: 500px;
	margin: 0 auto;
}

/* Filters */
.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 0 20px var(--space-lg);
}

.filter-btn {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: transparent;
	border: 1px solid var(--linen-dark);
	color: var(--text-mid);
	padding: 8px 18px;
	border-radius: 20px;
	cursor: pointer;
	transition: all var(--transition);
	font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--sage-dark);
	color: var(--linen);
	border-color: var(--sage-dark);
}

/* Full gallery grid */
.gallery-full {
	padding: 0 20px var(--space-2xl);
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-full .gallery-grid {
	grid-template-columns: 1fr;
}

/* Card hide/show for filtering */
.gallery-card.is-hidden {
	display: none;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-header {
	text-align: center;
	padding: var(--space-xl) 20px var(--space-md);
}

.contact-header h1 {
	margin-bottom: var(--space-sm);
}

.contact-header p {
	max-width: 500px;
	margin: 0 auto;
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	padding: var(--space-md) 20px var(--space-2xl);
	max-width: 800px;
	margin: 0 auto;
}

/* Contact Testimonial */
.contact-testimonial {
	text-align: center;
	padding: var(--space-lg);
	background: var(--sage-dark);
	border-radius: 8px;
}

.contact-testimonial blockquote {
	font-family: var(--font-heading);
	font-size: 20px;
	font-style: italic;
	line-height: 1.6;
	color: var(--linen);
	margin-bottom: var(--space-md);
}

.contact-testimonial blockquote::before {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: var(--copper);
	margin: 0 auto var(--space-md);
}

.contact-testimonial cite {
	font-style: normal;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sage-pale);
	font-weight: 500;
}

/* Form (commented out — see contact.html TODO) */
.contact-form h2 {
	margin-bottom: var(--space-md);
}

.form-group {
	margin-bottom: var(--space-sm);
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.form-submit {
	margin-top: var(--space-md);
}

.form-success {
	display: none;
	text-align: center;
	padding: var(--space-lg);
	background: rgba(122, 140, 110, 0.1);
	border-radius: 8px;
	margin-top: var(--space-md);
}

.form-success.is-visible {
	display: block;
}

.form-success h3 {
	color: var(--sage-dark);
	margin-bottom: 8px;
}

/* Info Panel */
.contact-info {
	background: var(--linen-mid);
	padding: var(--space-lg);
	border-radius: 8px;
}

.contact-info h2 {
	margin-bottom: var(--space-md);
}

.info-item {
	margin-bottom: var(--space-md);
}

.info-item h4 {
	font-style: normal;
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sage);
	font-weight: 600;
	margin-bottom: 6px;
}

.info-item p,
.info-item a {
	font-size: 14px;
	color: var(--text-dark);
}

.info-item a:hover {
	color: var(--copper);
}

.info-social {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.info-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--linen-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 500;
	color: var(--text-mid);
}

.info-social a:hover {
	border-color: var(--copper);
	color: var(--copper);
}

/* ============================================
   EVENTS PAGE
   ============================================ */

.events-header {
	text-align: center;
	padding: var(--space-xl) 20px var(--space-md);
}

.events-header h1 {
	margin-bottom: var(--space-sm);
}

.events-header p {
	max-width: 500px;
	margin: 0 auto;
}

/* Filters */
.events-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 0 20px var(--space-lg);
}

/* Upcoming Events */
.events-upcoming {
	padding: 0 20px var(--space-xl);
}

.events-upcoming .label {
	text-align: center;
	margin-bottom: var(--space-md);
}

.event-card {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md) 0;
	border-top: 1px solid var(--linen-dark);
}

.event-card:last-child {
	border-bottom: 1px solid var(--linen-dark);
}

.event-card.is-hidden {
	display: none;
}

.event-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 60px;
	padding-top: 4px;
}

.event-month {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sage);
	font-weight: 600;
}

.event-day {
	font-family: var(--font-heading);
	font-size: 32px;
	color: var(--black);
	line-height: 1.1;
}

.event-details {
	flex: 1;
}

.event-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 3px;
	margin-bottom: 8px;
}

.event-tag--workshop {
	background: rgba(122, 140, 110, 0.15);
	color: var(--sage-dark);
}

.event-tag--market {
	background: rgba(194, 120, 78, 0.15);
	color: var(--copper);
}

.event-details h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.event-details p {
	font-size: 1.1rem;
	margin-bottom: var(--space-sm);
}

.event-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: var(--space-sm);
}

.event-meta span {
	font-size: 1.1rem;
	color: var(--text-mid);
	letter-spacing: 0.5px;
}

.btn--sm {
	padding: 10px 24px;
	font-size: 11px;
}

/* Event Flyer Thumbnail */
.event-flyer {
	display: none;
	flex-shrink: 0;
	text-decoration: none;
}

.event-flyer-placeholder {
	width: 100px;
	height: 130px;
	background: var(--linen-mid);
	border: 1px dashed var(--linen-dark);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-light);
	transition: all var(--transition);
}

.event-flyer:hover .event-flyer-placeholder {
	border-color: var(--copper);
	color: var(--copper);
	background: rgba(194, 120, 78, 0.05);
}

/* When a real flyer image is added, use this instead of the placeholder */
.event-flyer img {
	width: 100px;
	height: 130px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid var(--linen-dark);
	transition: all var(--transition);
}

.event-flyer:hover img {
	border-color: var(--copper);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Workshop Info */
.workshop-info {
	padding: var(--space-xl) 20px;
	background: var(--sage-dark);
	color: var(--linen);
}

.workshop-info h2 {
	color: var(--linen);
	text-align: center;
	margin-bottom: var(--space-lg);
}

.workshop-details-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
}

.workshop-detail h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	color: var(--linen);
	margin-bottom: 6px;
	text-transform: none;
	letter-spacing: 0;
}

.workshop-detail p {
	font-size: 1.1rem;
	color: rgba(250, 248, 244, 0.7);
}

/* Regular Markets */
.markets-regular {
	padding: var(--space-xl) 20px;
	text-align: center;
}

.markets-regular h2 {
	margin-bottom: var(--space-sm);
}

.markets-desc {
	max-width: 550px;
	margin: 0 auto var(--space-lg);
}

.markets-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
	max-width: 800px;
	margin: 0 auto;
}

.market-item {
	padding: var(--space-md);
	background: var(--linen-mid);
	border-radius: 6px;
}

.market-item h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	color: var(--black);
	margin-bottom: 4px;
	text-transform: none;
	letter-spacing: 0;
}

.market-item p {
	font-size: 1.1rem;
	color: var(--text-mid);
}

/* Past Events */
.past-events {
	padding: var(--space-xl) 20px;
	background: var(--linen-mid);
	text-align: center;
}

.past-events h2 {
	margin-bottom: var(--space-lg);
}

.past-events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.past-event-card {
	text-align: left;
}

.past-event-image {
	aspect-ratio: 4/3;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 10px;
}

.past-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.past-event-card h4 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	color: var(--black);
	margin-bottom: 2px;
	text-transform: none;
	letter-spacing: 0;
}

.past-event-card span {
	font-size: 1rem;
	color: var(--text-dark);
	letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE — TABLET (min-width: 600px)
   ============================================ */

@media (min-width: 600px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.gallery-full .gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-image img {
		height: 350px;
	}

	.featured-placeholder {
		height: 350px;
	}

	.newsletter-form {
		flex-direction: row;
	}

	.newsletter-form .btn {
		width: auto;
	}

	.process-steps {
		flex-direction: row;
		gap: var(--space-md);
	}

	.form-row {
		flex-direction: row;
	}

	.contact-content {
		flex-direction: column;
	}

	.workshop-details-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.markets-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.past-events-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.event-meta {
		flex-direction: row;
		gap: var(--space-sm);
		flex-wrap: wrap;
	}

	.event-meta span:not(:last-child)::after {
		content: "·";
		margin-left: var(--space-sm);
		color: var(--text-light);
	}

	.event-flyer {
		display: flex;
		align-items: flex-start;
	}
}

/* ============================================
   RESPONSIVE — DESKTOP (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
	h1 {
		font-size: 42px;
	}
	h2 {
		font-size: 32px;
	}

	.container {
		padding: 0 40px;
	}
	.container--narrow {
		padding: 0 40px;
	}
	.container--mid {
		padding: 0 40px;
	}


	/* Footer */
	.site-footer {
		padding: var(--space-xl) 40px;
	}

	.footer-logo img {
		height: 90px;
	}

	/* Home sections */
	.hero {
		padding: var(--space-2xl) 40px;
	}

	.featured-image {
		padding: 0 40px;
	}

	.featured-image img {
		height: 400px;
	}

	.featured-placeholder {
		height: 400px;
	}

	.about-preview {
		padding: var(--space-3xl) 40px;
	}

	.services {
		padding: var(--space-2xl) 40px;
	}

	.service-item {
		display: grid;
		grid-template-columns: 180px 1fr auto;
		align-items: center;
		gap: 30px;
		padding: var(--space-md) 0;
	}

	.service-item p {
		margin-bottom: 0;
	}

	.gallery-preview {
		padding: var(--space-3xl) 40px;
	}

	.testimonial {
		padding: var(--space-2xl) 40px;
	}

	.testimonial blockquote {
		font-size: 26px;
	}

	.newsletter {
		padding: var(--space-2xl) 40px;
	}

	.cta-section {
		padding: var(--space-2xl) 40px;
	}

	/* About page */
	.about-hero {
		padding: var(--space-2xl) 40px;
	}

	.artist-story {
		padding: var(--space-3xl) 40px;
	}

	.artist-story-inner {
		flex-direction: row;
		align-items: center;
	}

	.artist-story-text {
		flex: 1;
	}

	.artist-story-image {
		flex: 1;
	}

	.process {
		padding: var(--space-2xl) 40px;
	}

	.values {
		padding: var(--space-2xl) 40px;
	}

	.values-grid {
		flex-direction: row;
		gap: var(--space-lg);
	}

	.value-item {
		flex: 1;
	}

	/* Gallery page */
	.gallery-page-header {
		padding: var(--space-2xl) 40px var(--space-md);
	}

	.gallery-full {
		padding: 0 40px var(--space-3xl);
	}

	/* Contact page */
	.contact-header {
		padding: var(--space-2xl) 40px var(--space-md);
	}

	.contact-content {
		flex-direction: column;
		padding: var(--space-md) 40px var(--space-3xl);
		max-width: 800px;
	}

	.contact-testimonial blockquote {
		font-size: 24px;
	}

	/* Events page */
	.events-header {
		padding: var(--space-2xl) 40px var(--space-md);
	}

	.events-upcoming {
		padding: 0 40px var(--space-xl);
	}

	.workshop-info {
		padding: var(--space-2xl) 40px;
	}

	.workshop-details-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.markets-regular {
		padding: var(--space-2xl) 40px;
	}

	.past-events {
		padding: var(--space-2xl) 40px;
	}

	.event-details h3 {
		font-size: 22px;
	}
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
	h1 {
		font-size: 50px;
	}
	h2 {
		font-size: 36px;
	}

	.nav-brand {
		font-size: 22px;
	}

	.footer-logo img {
		height: 100px;
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-full .gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.featured-image img {
		height: 450px;
	}

	.featured-placeholder {
		height: 450px;
	}

	.hero {
		padding: var(--space-2xl) 40px var(--space-3xl);
	}

	.services {
		padding: var(--space-3xl) 40px;
	}

	.service-item {
		grid-template-columns: 200px 1fr auto;
		gap: 40px;
		padding: 30px 0;
	}

	.hero-logo {
		height: 240px;
	}

	/* Nav — show links, hide hamburger */
	.nav-toggle {
		display: none;
	}

	.site-nav {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 12px 40px;
	}

	.nav-brand {
		font-size: 20px;
	}

	.nav-links {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		gap: 40px;
		padding: 0;
		width: auto;
		position: static;
	}

	.nav-divider {
		display: none;
	}

	.hero-logo {
		height: 200px;
	}
}
