:root {
	--cream: #F7F3EA;
	--cream-dark: #EFE9DA;
	--sage: #6E7A5E;
	--sage-dark: #5C6650;
	--terracotta: #C1703D;
	--terracotta-dark: #A75E30;
	--ink: #33302A;
	--ink-soft: #6B675E;
	--white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
}

h1, h2, h3 {
	font-family: Georgia, 'Times New Roman', Times, serif;
	color: var(--ink);
	margin: 0 0 0.6em;
}

h2 { margin-top: 1.6em; }
h3 { margin-top: 1.2em; }
.section-content > h2:first-child,
.section-content > h3:first-child { margin-top: 0; }

h1 { font-size: 2.6em; line-height: 1.15; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.2em; }

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin: 0 0 1em; }

/* Header / Nav */
#header {
	background: var(--white);
	border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo:hover { text-decoration: none; }
.logo-img { height: 104px; width: auto; display: block; }
.logo-word {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 1.5em;
	color: var(--ink);
	letter-spacing: 0.02em;
}
.logo-tagline {
	font-size: 0.7em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.desktop-nav { display: flex; align-items: center; gap: 20px; }
.desktop-nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.desktop-nav ul li a {
	color: var(--ink);
	font-size: 0.82em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}
.desktop-nav ul li a:hover { color: var(--terracotta); text-decoration: none; }

.btn-cta {
	display: inline-block;
	background: var(--terracotta);
	color: var(--white) !important;
	padding: 11px 24px;
	border-radius: 3px;
	font-size: 0.85em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.btn-cta:hover { background: var(--terracotta-dark); text-decoration: none; }

.btn-outline {
	display: inline-block;
	border: 1px solid var(--sage);
	color: var(--sage-dark);
	padding: 10px 22px;
	border-radius: 3px;
	font-size: 0.85em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.btn-outline:hover { background: var(--sage); color: var(--white) !important; text-decoration: none; }

.menuICON { display: none; }
.menuICON a { font-size: 1.6em; color: var(--ink); }

#navON {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0;
	background: var(--cream);
	z-index: 999;
	padding: 24px;
}
#navON ul { list-style: none; padding: 0; margin: 40px 0 0; }
#navON ul li { margin-bottom: 18px; }
#navON ul li a { font-size: 1.3em; color: var(--ink); }
.nav-close { position: absolute; top: 20px; right: 24px; font-size: 2em; color: var(--ink); }

/* Hero */
.hero {
	background-size: cover;
	background-position: center;
	min-height: 560px;
	display: flex;
	align-items: center;
	position: relative;
}
.hero-content {
	max-width: 560px;
	margin-left: 8%;
	background: rgba(247, 243, 234, 0.88);
	padding: 40px;
	border-radius: 4px;
}
.hero-content p { color: var(--ink-soft); }

/* Hero with form overlaid - single-focus booking pages */
.hero-form {
	background-size: cover;
	background-position: center;
	padding: 60px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-form-panel {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	background: rgba(247, 243, 234, 0.95);
	padding: 40px 48px;
	border-radius: 6px;
	text-align: center;
}
.hero-form-panel h1 { font-size: 2.1em; margin-bottom: 0.2em; }
.hero-form-panel .hero-form-sub { color: var(--ink-soft); margin-bottom: 1.4em; }
.hero-form-panel .co2-form { max-width: none; margin: 0; text-align: left; }

@media (max-width: 900px) {
	.hero-form { background-position: 30% center; padding: 40px 24px; }
	.hero-form-panel { padding: 28px 24px; }
}

/* Sections */
.section { padding: 60px 24px; }
.section-content { max-width: 1000px; margin: 0 auto; }
.section.alt { background: var(--cream); }
.section.band { background: var(--sage); color: var(--white); }
.section.band h2, .section.band h3 { color: var(--white); }
.section.band p { color: rgba(255,255,255,0.85); }
.cta-band { background: var(--sage-dark); }

/* Icon row */
.icon-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
.icon-circle {
	width: 56px; height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.6);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 14px;
	font-size: 1.3em;
}
.icon-circle.light { border-color: var(--sage); color: var(--sage-dark); }

/* Service grid (light-background icon list) */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; margin: 24px 0; }
.service-grid .icon-item p { font-size: 0.9em; color: var(--ink-soft); margin: 0; }

@media (max-width: 700px) {
	.service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Bio grid */
.bio-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	text-align: center;
	padding-bottom: 24px;
}
.bio-photo {
	width: 160px; height: 160px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 16px;
	display: block;
}
.bio-title { color: var(--ink-soft); font-size: 0.9em; margin-bottom: 8px; }

/* Footer */
footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 48px 24px 24px; }
.footer-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 32px;
}
.footer-logo-img { height: 64px; width: auto; margin-bottom: 14px; }
.footer-col h4 { color: var(--white); font-size: 0.9em; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(255,255,255,0.75); margin-bottom: 8px; font-size: 0.9em; }
.footer-copy { text-align: center; max-width: 1000px; margin: 32px auto 0; font-size: 0.8em; color: rgba(255,255,255,0.5); }

@media (max-width: 1150px) {
	.desktop-nav { display: none; }
	.menuICON { display: block; }
}

@media (max-width: 900px) {
	.icon-row { grid-template-columns: repeat(2, 1fr); }
	.bio-grid { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; }
	.hero-content { margin: 0 5%; max-width: none; }
	h1 { font-size: 2em; }
	.price-table th, .price-table td { padding: 8px; }
	.network-grid { grid-template-columns: 1fr; }
}

/* Page hero (non-homepage, no photo bg) */
.page-hero { background: var(--cream); padding: 56px 24px 40px; text-align: center; }
.page-hero p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* Page hero - wide banner photo variant (same formula as .hero/.hero-content, just shorter) */
.page-hero-photo {
	background-size: cover;
	background-position: center;
	min-height: 500px;
	display: flex;
	align-items: center;
}
.page-hero-photo .page-hero-text {
	max-width: 620px;
	margin-left: 8%;
	background: rgba(247, 243, 234, 0.88);
	padding: 40px;
	border-radius: 4px;
}
.page-hero-photo p { color: var(--ink-soft); margin: 0; }

@media (max-width: 900px) {
	.page-hero-photo .page-hero-text { margin: 0 5%; max-width: none; }
}

/* Lineage badge */
.lineage { display: inline-block; font-size: 0.8em; color: var(--sage-dark); background: var(--cream-dark); padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }

/* Price tables */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0 32px; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.price-table th { text-align: left; background: var(--sage-dark); padding: 12px 16px; font-size: 0.8em; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td { padding: 13px 16px; border-bottom: 1px solid var(--cream-dark); }
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: bold; color: var(--terracotta-dark); font-size: 1.05em; white-space: nowrap; }
.price-table th:first-child:last-child { text-align: left; }
.price-table td:first-child:last-child { text-align: left; font-weight: normal; color: var(--ink); font-size: 1em; white-space: normal; }

/* Pricing cards (session lengths) */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 24px 0 32px; }
.pricing-card {
	display: block;
	background: var(--cream);
	border-radius: 6px;
	padding: 28px 20px;
	text-align: center;
	border: 1px solid var(--cream-dark);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pricing-card:hover {
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	border-color: var(--sage);
}
.pricing-card.featured { background: var(--sage-dark); border-color: var(--sage-dark); }
.pricing-card.featured:hover { border-color: var(--terracotta); }
.pricing-card.featured h3, .pricing-card.featured .pricing-range { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.8); }
.pricing-card h3 { margin-top: 0; color: var(--ink); }
.pricing-card .pricing-range { display: block; font-size: 1.7em; font-family: Georgia, serif; color: var(--terracotta-dark); margin: 10px 0; }
.pricing-card p { color: var(--ink-soft); font-size: 0.9em; margin: 0; }

@media (max-width: 700px) {
	.pricing-cards { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-item { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--cream-dark); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--terracotta-dark); font-size: 1.05em; }

/* Form */
.co2-form { max-width: 560px; margin: 0 auto; }
.form-panel {
	max-width: 560px;
	margin: 0 auto;
	background: var(--cream);
	border: 1px solid var(--cream-dark);
	border-radius: 6px;
	padding: 40px;
}
.form-panel .co2-form { max-width: none; margin: 0; }

@media (max-width: 700px) {
	.form-panel { padding: 28px 24px; }
}
.form-row { margin-bottom: 18px; }
.form-row input, .form-row textarea, .form-row select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--cream-dark);
	border-radius: 4px;
	font-family: inherit;
	font-size: 1em;
	background: var(--white);
	color: var(--ink);
}
.form-row select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="8"><path d="M1 1l6 6 6-6" stroke="%236B675E" stroke-width="2" fill="none" fill-rule="evenodd"/></svg>');
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
	outline: none;
	border-color: var(--sage);
	background-color: var(--white);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--ink-soft); }
.form-row textarea { min-height: 100px; resize: vertical; }
.form-submit {
	display: inline-block;
	background: var(--terracotta);
	color: var(--white);
	border: none;
	padding: 13px 32px;
	border-radius: 3px;
	font-size: 0.9em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}
.form-submit:hover { background: var(--terracotta-dark); }

/* Network / practitioner grid */
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.network-card { background: var(--cream); border-radius: 4px; padding: 24px; text-align: center; }
.network-card .bio-photo { width: 110px; height: 110px; margin-bottom: 12px; }
.network-card .lineage { font-size: 0.72em; }

/* Shop grid */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 24px 0 40px; }
.shop-card {
	display: block;
	background: var(--cream);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--cream-dark);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.shop-card:hover {
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	border-color: var(--sage);
}
.shop-card-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.shop-card-label {
	display: block;
	padding: 14px 16px;
	text-align: center;
	color: var(--ink);
	font-size: 0.9em;
}
.shop-card:hover .shop-card-label { color: var(--terracotta-dark); }

@media (max-width: 900px) {
	.shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Simple content list */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 6px 0 6px 26px; position: relative; }
.check-list li:before { content: "\2713"; position: absolute; left: 0; color: var(--sage); }

.contact-block { background: var(--sage-dark); border-radius: 4px; padding: 32px 24px; text-align: center; margin: 24px 0; }
.contact-block h3 { color: var(--white); }
.contact-block p { color: rgba(255,255,255,0.85); }
.contact-block a { font-weight: bold; color: var(--cream); }
.contact-block a:hover { color: var(--white); }
.contact-block .btn-cta { color: var(--white) !important; }
.contact-block .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.contact-block .btn-outline:hover { background: var(--white); color: var(--sage-dark) !important; }
