/* Home page, section-specific layouts.
   Each block corresponds to a part in /parts/*.php. */

/* ─── Hero ───────────────────────────────────────────────────── */
.gw-hero { padding-bottom: 100px; }
.gw-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: var(--gw-max-content);
	margin: 0 auto;
}
.gw-hero__h1 {
	font-size: clamp(48px, 6vw, 84px);
	line-height: 1.0;
	letter-spacing: -0.03em;
	margin: 24px 0 0;
}
.gw-hero__sub {
	font-size: 18px;
	line-height: 1.55;
	color: var(--gw-muted);
	max-width: 480px;
	margin-top: 28px;
}
.gw-hero__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.gw-hero__stats {
	display: flex;
	gap: 40px;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid var(--gw-hairline);
	flex-wrap: wrap;
}

.gw-hero__art { position: relative; }
.gw-hero__quote {
	position: absolute;
	bottom: -20px;
	left: -32px;
	width: 240px;
	background: #fff;
	border-radius: var(--gw-radius-sm);
	padding: 20px;
	box-shadow: 0 16px 40px rgba(40,30,20,0.12);
	border: 1px solid var(--gw-hairline);
}
.gw-hero__quote-text {
	font-family: var(--gw-font-serif);
	font-size: 14px;
	line-height: 1.45;
	font-style: italic;
	color: var(--gw-ink);
	margin-top: 8px;
}
.gw-hero__quote-attrib {
	font-size: 11px;
	color: var(--gw-muted);
	margin-top: 10px;
}

@media (max-width: 900px) {
	.gw-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.gw-hero__art { order: -1; }
	.gw-hero__quote { left: 0; }
}

/* ─── Philosophy ─────────────────────────────────────────────── */
.gw-philosophy__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.6fr;
	gap: 64px;
	align-items: start;
	max-width: var(--gw-max-content);
	margin: 0 auto;
}
.gw-philosophy__aside { position: sticky; top: 100px; }
.gw-philosophy__name { font-family: var(--gw-font-serif); font-size: 22px; margin-top: 4px; }
.gw-philosophy__role { font-size: 12px; color: var(--gw-muted); margin-top: 2px; }
.gw-philosophy__h {
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.0;
	margin: 14px 0 32px;
}
.gw-philosophy__prose {
	font-size: 17px;
	line-height: 1.65;
	font-weight: 300;
}
.gw-philosophy__prose p { margin: 0; }
.gw-philosophy__prose p + p { margin-top: 20px; }
.gw-philosophy__sig {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--gw-hairline);
	display: flex;
	align-items: center;
	gap: 16px;
}
.gw-philosophy__sig-name {
	font-family: var(--gw-font-serif);
	font-style: italic;
	font-size: 28px;
	color: var(--gw-turquoise);
}
.gw-philosophy__sig-text { font-size: 12px; color: var(--gw-muted); }

@media (max-width: 900px) {
	.gw-philosophy__grid { grid-template-columns: 1fr; gap: 32px; }
	.gw-philosophy__aside { position: static; }
}

/* ─── Services grid ──────────────────────────────────────────── */
.gw-services { max-width: var(--gw-max-content); margin: 0 auto; }
.gw-services__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 56px;
	gap: 24px;
	flex-wrap: wrap;
}
.gw-services__h { font-size: clamp(36px, 4vw, 56px); line-height: 1.0; margin: 14px 0 0; }
.gw-services__lede { font-size: 15px; color: var(--gw-muted); max-width: 320px; line-height: 1.55; margin: 0; }

.gw-service-lead {
	position: relative;
	background: var(--gw-forest-soft);
	color: var(--gw-ink);
	border-radius: var(--gw-radius-md);
	padding: 48px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 32px;
}
.gw-service-lead__title {
	font-family: var(--gw-font-serif);
	font-size: clamp(40px, 4.5vw, 56px);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.0;
	color: var(--gw-ink);
	margin: 0;
}
.gw-service-lead__copy { display: flex; flex-direction: column; gap: 20px; }
.gw-service-lead__meta { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gw-service-lead__price { font-size: 12px; color: #5a4f3f; }
.gw-service-lead__desc { font-size: 15px; line-height: 1.6; color: #3a342a; }
.gw-service-lead__desc > p { margin: 0 0 0.6em; }
.gw-service-lead__desc > p:last-child { margin-bottom: 0; }
.gw-service-card__desc > p { margin: 0 0 0.5em; }
.gw-service-card__desc > p:last-child { margin-bottom: 0; }
.gw-service-lead__team { display: flex; align-items: center; gap: 16px; }
.gw-service-lead__team-names { font-size: 12px; color: #5a4f3f; line-height: 1.4; }

.gw-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.gw-service-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--gw-hairline);
	border-radius: var(--gw-radius-md);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.gw-service-card__meta { display: flex; align-items: center; justify-content: space-between; }
.gw-service-card__price { font-size: 11px; color: var(--gw-muted); }
.gw-service-card__title {
	font-family: var(--gw-font-serif);
	font-weight: 400;
	font-size: 26px;
	line-height: 1.05;
	color: var(--gw-ink);
	margin: 0;
}
.gw-service-card__desc { font-size: 13px; line-height: 1.55; color: var(--gw-muted); flex: 1; margin: 0; }
.gw-service-card__team { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--gw-hairline); }
.gw-service-card__team-names { font-size: 11px; color: var(--gw-muted); line-height: 1.35; }

@media (max-width: 600px) {
	.gw-service-lead { grid-template-columns: 1fr; padding: 32px; }
	.gw-service-grid { grid-template-columns: 1fr; }
}

/* Portrait stack */
.gw-portrait-stack { display: flex; }
.gw-portrait-stack__item {
	width: 60px;
	height: 60px;
	display: block;
}
.gw-portrait-stack__item + .gw-portrait-stack__item {
	margin-left: -19px;
}
.gw-portrait-stack__item .gw-photo {
	width: 100%; height: 100%;
	border-radius: 999px;
	border: 2px solid #fff;
	box-shadow: 0 4px 12px rgba(20,30,25,0.18);
}
.gw-portrait-stack__item .gw-photo::before { display: none; }

/* ─── Complaints ─────────────────────────────────────────────── */
.gw-complaints__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: start;
	max-width: var(--gw-max-content);
	margin: 0 auto;
}
.gw-complaints__aside { position: sticky; top: 100px; }
.gw-complaints__h { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.05; margin: 14px 0 16px; }
.gw-complaints__lede { font-size: 14px; color: var(--gw-muted); line-height: 1.55; margin: 0 0 28px; }
.gw-complaints__ctas { display: flex; flex-direction: column; gap: 10px; }
.gw-complaints__ctas .gw-btn { justify-content: center; }

.gw-complaints__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid var(--gw-hairline);
	border-radius: var(--gw-radius-md);
	overflow: hidden;
	background: #fff;
}
.gw-complaints__item {
	position: relative;
	border-right: 1px solid var(--gw-hairline);
	border-bottom: 1px solid var(--gw-hairline);
}
.gw-complaints__item:nth-child(even) { border-right: none; }
.gw-complaints__item:nth-last-child(-n+2) { border-bottom: none; }
.gw-complaints__link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 24px;
	color: inherit;
	transition: background-color .15s;
}
.gw-complaints__link:hover {
	background: rgba(27, 140, 135, 0.06);
	color: var(--gw-accent-deep);
}
.gw-complaints__link:hover .gw-complaints__arrow {
	opacity: 1;
	transform: translateX(2px);
}
.gw-complaints__num {
	font-family: var(--gw-font-serif);
	font-size: 12px;
	color: var(--gw-accent-deep);
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}
.gw-complaints__label { font-size: 14px; color: var(--gw-ink); flex: 1; }
.gw-complaints__link:hover .gw-complaints__label { color: var(--gw-accent-deep); }
.gw-complaints__arrow {
	color: var(--gw-accent-deep);
	font-size: 14px;
	opacity: 0;
	transition: opacity .15s, transform .15s;
}

@media (max-width: 900px) {
	.gw-complaints__grid { grid-template-columns: 1fr; gap: 32px; }
	.gw-complaints__aside { position: static; }
}
@media (max-width: 600px) {
	.gw-complaints__list { grid-template-columns: 1fr; }
	.gw-complaints__item { border-right: none; }
}

/* ─── Testimonials (forest section) ──────────────────────────── */
.gw-testimonials.gw-section--forest { background: #3f5046; }

.gw-testimonials__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
	max-width: var(--gw-max-content);
	margin-left: auto;
	margin-right: auto;
}
.gw-testimonials__head .gw-hairline { flex: 1; background: rgba(205,212,191,0.25); }
.gw-testimonials__rating { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #cdd5c8; }
.gw-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: var(--gw-max-content);
	margin: 0 auto;
}
.gw-testimonial {
	position: relative;
	padding: 32px;
	border-radius: var(--gw-radius-md);
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.gw-testimonial__edit {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	color: #f3eedf;
	opacity: 0;
	transition: opacity .15s, background .15s;
}
.gw-testimonial:hover .gw-testimonial__edit,
.gw-testimonial__edit:focus-visible {
	opacity: 1;
}
.gw-testimonial__edit:hover { background: rgba(255,255,255,0.2); color: #fff; }
.gw-testimonial__head { display: flex; align-items: center; gap: 14px; }
.gw-testimonial__name { font-family: var(--gw-font-serif); font-size: 16px; color: #f3eedf; font-weight: 500; }
.gw-testimonial__source { font-size: 11px; color: var(--gw-sage); letter-spacing: 0.04em; margin-top: 4px; }
.gw-testimonial__rating { color: var(--gw-sage); }
.gw-testimonial__text {
	font-family: var(--gw-font-serif);
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	margin: 0;
	color: #f3eedf;
	font-style: italic;
}

/* Mobile carousel, horizontal snap-scroll with a peek of the next card
   so the swipe affordance is visible without arrows or dots. */
@media (max-width: 900px) {
	.gw-testimonials__grid {
		display: flex;
		grid-template-columns: none;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		/* break out of the section padding so the first card starts flush
		   with the left edge of the viewport and the second peeks in. */
		margin: 0 -24px;
		padding: 4px 24px 20px;
		scroll-padding-left: 24px;
	}
	.gw-testimonials__grid::-webkit-scrollbar { display: none; }
	.gw-testimonial {
		flex: 0 0 85%;
		max-width: 360px;
		padding: 24px;
		gap: 14px;
		scroll-snap-align: start;
	}
	.gw-testimonial__text { font-size: 16px; }
}

/* ─── First visit (numbered timeline) ────────────────────────── */
.gw-first-visit__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 56px;
	gap: 24px;
	max-width: var(--gw-max-content);
	margin-left: auto;
	margin-right: auto;
	flex-wrap: wrap;
}
.gw-first-visit__h { font-size: clamp(36px, 4vw, 56px); line-height: 1.0; margin: 14px 0 0; }
.gw-first-visit__lede { font-size: 15px; color: var(--gw-muted); max-width: 360px; line-height: 1.55; margin: 0; }
.gw-first-visit__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--gw-hairline);
	max-width: var(--gw-max-content);
}
.gw-first-visit__item {
	padding: 28px 24px 28px 24px;
	border-right: 1px solid var(--gw-hairline);
}
.gw-first-visit__item:first-child { padding-left: 0; }
.gw-first-visit__item:last-child { border-right: none; padding-right: 0; }
.gw-first-visit__kicker {
	font-family: var(--gw-font-serif);
	font-size: 13px;
	color: var(--gw-accent-deep);
	letter-spacing: 0.06em;
}
.gw-first-visit__title {
	font-family: var(--gw-font-serif);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.15;
	color: var(--gw-ink);
	margin: 8px 0 12px;
	letter-spacing: -0.01em;
}
.gw-first-visit__text { font-size: 13px; line-height: 1.55; color: var(--gw-muted); margin: 0; }
@media (max-width: 900px) {
	.gw-first-visit__list { grid-template-columns: 1fr 1fr; }
	.gw-first-visit__item:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
	.gw-first-visit__list { grid-template-columns: 1fr; }
	.gw-first-visit__item { border-right: none; border-bottom: 1px solid var(--gw-hairline); padding-left: 0; padding-right: 0; }
}

/* Team V3 styles live in components.css (shared with /team/ subpage). */

/* ─── Art teaser, header (1fr 1.4fr) ─────────────────────────── */
/* Outer .gw-art is full-bleed so the section bg (sand/cream) extends to the
   viewport edges. Each direct child is constrained to the content max-width. */
.gw-art__head {
	max-width: var(--gw-max-content);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 56px;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 60px;
	align-items: center;
}
.gw-art__h { font-size: clamp(36px, 4vw, 56px); line-height: 1.0; margin: 14px 0 0; }
.gw-art__lede {
	font-size: 15px;
	color: var(--gw-muted);
	line-height: 1.6;
	margin: 0;
	max-width: 520px;
	justify-self: end;
}

/* Current + upcoming feature row */
.gw-art__features {
	max-width: var(--gw-max-content);
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.gw-art__feature-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--gw-hairline);
	border-radius: var(--gw-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.gw-art__feature-art { position: relative; }
.gw-art__feature-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
}
.gw-art__feature-badge--current {
	background: var(--gw-accent);
	color: #fff;
}
.gw-art__feature-badge--upcoming {
	background: #fff;
	color: var(--gw-accent-deep);
	border: 1px solid rgba(27, 140, 135, 0.33);
}
.gw-art__feature-body {
	padding: 28px 28px 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.gw-art__feature-meta { font-size: 12px; color: var(--gw-muted); letter-spacing: 0.04em; }
.gw-art__feature-title {
	font-family: var(--gw-font-serif);
	font-weight: 400;
	font-size: 32px;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: var(--gw-ink);
	margin: 0;
}
.gw-art__feature-artist { font-size: 14px; color: var(--gw-ink); margin-top: -4px; }
.gw-art__feature-blurb {
	font-size: 14px;
	color: var(--gw-muted);
	line-height: 1.6;
	margin: 4px 0 0;
	flex: 1;
}
.gw-art__feature-ctas {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}
.gw-art__feature-ctas .gw-btn { padding: 11px 18px; font-size: 12px; }

/* Past, archive list with sticky aside */
.gw-art__archive {
	max-width: var(--gw-max-content);
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: start;
}
.gw-art__archive-aside { position: sticky; top: 100px; }
.gw-art__archive-h {
	font-family: var(--gw-font-serif);
	font-weight: 400;
	font-size: 36px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--gw-ink);
	margin: 12px 0 14px;
}
.gw-art__archive-lede {
	font-size: 13px;
	color: var(--gw-muted);
	line-height: 1.6;
	margin: 0;
}
.gw-art__archive-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.gw-art__archive-row {
	position: relative;
	display: grid;
	grid-template-columns: 120px 1fr 1fr auto;
	gap: 32px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid var(--gw-hairline);
}
.gw-art__archive-row:first-child { border-top: 1px solid var(--gw-hairline); }
.gw-art__archive-row-photo { width: 120px; }
.gw-art__archive-row-photo .gw-photo { border-radius: 4px; }
.gw-art__archive-row-title {
	font-family: var(--gw-font-serif);
	font-size: 22px;
	line-height: 1.1;
	color: var(--gw-ink);
	letter-spacing: -0.01em;
}
.gw-art__archive-row-sub { font-size: 12px; color: var(--gw-muted); margin-top: 4px; }
.gw-art__archive-row-dates { font-size: 12px; color: var(--gw-muted); font-variant-numeric: tabular-nums; }
.gw-art__archive-row-link {
	font-size: 12px;
	color: var(--gw-accent-deep);
	font-weight: 500;
	white-space: nowrap;
}
.gw-art__archive-row-link:hover { color: var(--gw-accent); }

/* The CTA section itself sits between archive and booking with no own
   vertical padding, the surrounding sections provide the breathing room. */
.gw-art--cta-only {
	background: var(--gw-forest);
	color: #f3eedf;
	padding-top: 80px;
	padding-bottom: 100px;
}

/* Submission CTA card */
.gw-art__cta {
	max-width: var(--gw-max-content);
	margin-left: auto;
	margin-right: auto;
	padding: 36px 44px;
	background: var(--gw-surface);
	border: 1px solid var(--gw-hairline);
	border-radius: var(--gw-radius-md);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.gw-art__cta-h {
	font-family: var(--gw-font-serif);
	font-weight: 400;
	font-size: 24px;
	color: var(--gw-ink);
	letter-spacing: -0.01em;
}
.gw-art__cta-text {
	font-size: 14px;
	color: var(--gw-muted);
	margin: 6px 0 0;
	max-width: 560px;
	line-height: 1.55;
}
.gw-art__cta .gw-btn { padding: 14px 24px; white-space: nowrap; }

@media (max-width: 1000px) {
	.gw-art__head { grid-template-columns: 1fr; }
	.gw-art__lede { justify-self: start; }
	.gw-art__features { grid-template-columns: 1fr; }
	.gw-art__archive { grid-template-columns: 1fr; }
	.gw-art__archive-aside { position: static; }
}
@media (max-width: 700px) {
	.gw-art__archive-row {
		grid-template-columns: 80px 1fr;
		gap: 16px;
	}
	.gw-art__archive-row-photo { width: 80px; }
	.gw-art__archive-row-dates,
	.gw-art__archive-row-link { grid-column: 2 / 3; padding-left: 0; }
}

/* ─── Booking ────────────────────────────────────────────────── */
.gw-booking__grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 60px;
	max-width: var(--gw-max-content);
	margin: 0 auto;
}
.gw-booking__h { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; margin: 14px 0 16px; }
.gw-booking__lede { font-size: 15px; line-height: 1.55; color: var(--gw-muted); margin: 0 0 28px; }
.gw-booking__facts {
	list-style: none;
	margin: 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--gw-hairline);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.gw-booking__facts li { display: flex; gap: 12px; align-items: center; }
.gw-booking__icon {
	width: 32px; height: 32px; border-radius: 999px;
	background: var(--gw-sage);
	color: var(--gw-forest);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.gw-booking__fact-strong { font-size: 13px; color: var(--gw-ink); font-weight: 500; }
.gw-booking__fact-muted { font-size: 12px; color: var(--gw-muted); }
.gw-booking__widget {
	background: #fff;
	border-radius: var(--gw-radius-md);
	border: 1px solid var(--gw-hairline);
	padding: 24px;
	min-height: 320px;
}
@media (max-width: 900px) {
	.gw-booking__grid { grid-template-columns: 1fr; gap: 32px; }
}
