/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.0
*/

:root {
	--c-charcoal: #161616;
	--c-charcoal-2: #1f1f1f;
	--c-charcoal-3: #2a2a2a;
	--c-red: #e62b25;
	--c-red-dark: #c4221d;
	--c-yellow: #ecc665;
	--c-yellow-dark: #d9ad0f;
	--c-offwhite: #f5f4f1;
	--c-gray: #f0efec;
	--c-line: #e2e0db;
	--c-text: #2c2c2c;
	--c-text-muted: #6f6f6f;
	--c-text-light: #f2f2f2;
	--c-text-dim: #b4b4b4;
	--font-display: 'Oswald', 'Arial Narrow', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--maxw: 1200px;
}

/* ---------- Full-bleed: break sections out of Astra's container ---------- */
.front-page > .hero,
.front-page > .trust-strip,
.front-page > .services,
.front-page > .about,
.front-page > .process,
.front-page > .cta-band,
.front-page > .booking,
.front-page > .testimonials {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* ---------- Base ---------- */
.front-page {
	font-family: var(--font-body);
	color: var(--c-text);
	line-height: 1.6;
}

.front-page h1,
.front-page h2,
.front-page h3 {
	font-family: var(--font-display);
	text-transform: uppercase;
	line-height: 1.12;
	letter-spacing: 0.5px;
	margin: 0;
}

.front-page section {
	padding: 0;
}

.section-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 90px 24px;
	text-align: center;
}

.section-title {
	font-size: 2.3rem;
	color: var(--c-charcoal);
	font-weight: 600;
	margin-bottom: 16px !important;
}

.section-title-light {
	color: #fff;
}

.section-lead {
	max-width: 620px;
	margin: 0 auto 50px;
	color: var(--c-text-muted);
	font-size: 1.05rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 3px;
	background: currentColor;
	transform: skewX(-20deg);
}

.eyebrow-red { color: var(--c-red); }
.eyebrow-yellow { color: var(--c-yellow); }

/* center the eyebrow when inside a centered block */
.section-inner .eyebrow,
.cta-band-text .eyebrow { justify-content: flex-start; }
.section-inner > .eyebrow { justify-content: center; }

/* ---------- Icon placeholders ---------- */
.icon-ph {
	width: 100%;
	height: 100%;
	display: block;
	color: inherit;
	opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-red { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn-red:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); color: #fff; }

.btn-yellow { background: var(--c-yellow); color: var(--c-charcoal); border-color: var(--c-yellow); }
.btn-yellow:hover { background: var(--c-yellow-dark); border-color: var(--c-yellow-dark); color: var(--c-charcoal); }

.btn-dark { background: var(--c-charcoal); color: #fff; border-color: var(--c-charcoal); }
.btn-dark:hover { background: var(--c-charcoal-3); border-color: var(--c-charcoal-3); color: #fff; }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: #fff; color: var(--c-charcoal); border-color: #fff; }

.btn-large { padding: 20px 42px; font-size: 1.05rem; }
.btn-center { display: inline-flex; margin: 0 auto; }

.btn-icon { width: 18px; height: 18px; display: inline-block; }

/* ---------- Sticky Header (carried over) ---------- */
.site-header,
.main-header-bar,
.ast-main-header-wrap,
.ast-above-header-wrap {
	background-color: var(--c-charcoal) !important;
	border: none !important;
	position: sticky;
	top: 0;
	z-index: 999;
}

.main-header-bar .main-navigation .menu-item > a {
	color: var(--c-text-light) !important;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.main-header-bar .main-navigation .menu-item > a:hover { color: var(--c-yellow) !important; }
.ast-site-title a, .ast-site-title a:hover { color: #fff !important; }

.nav-book-btn, .nav-book-btn a {
	background-color: var(--c-yellow) !important;
	color: var(--c-charcoal) !important;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 700;
	padding: 10px 26px !important;
	border-radius: 999px !important;
}
.nav-book-btn:hover, .nav-book-btn a:hover { background-color: var(--c-yellow-dark) !important; }

/* ---------- Hero ---------- */
.hero {
	background-color: var(--c-charcoal);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	color: var(--c-text-light);
	min-height: 640px;
	display: flex;
	align-items: center;
}

.hero-content {
	max-width: var(--maxw);
	width: 100%;
	margin: 0 auto;
	padding: 100px 24px;
	text-align: left;
}

.hero h1 {
	font-size: 4rem;
	color: #fff;
	font-weight: 700;
	margin-bottom: 22px;
}

.hero-subtext {
	font-size: 1.1rem;
	color: var(--c-text-dim);
	max-width: 480px;
	margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Trust Strip ---------- */
.trust-strip { background: var(--c-yellow); }

.trust-strip-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 36px 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.trust-item { display: flex; align-items: center; gap: 14px; }

.trust-icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	color: var(--c-charcoal);
}

.trust-item h3 { font-size: 1rem; color: var(--c-charcoal); margin-bottom: 2px; }
.trust-item p { font-size: 0.85rem; color: #4a4032; margin: 0; line-height: 1.4; }

/* ---------- Services ---------- */
.services { background: var(--c-gray); }

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 50px;
}

.service-card {
	background: #fff;
	border-radius: 8px;
	padding: 38px 30px;
	text-align: left;
	border: 1px solid var(--c-line);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0,0,0,0.08);
	border-color: transparent;
}

.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 14px;
	background: var(--c-red);
	color: #fff;
	border-radius: 12px;
	margin-bottom: 22px;
}

.service-card h3 { font-size: 1.2rem; color: var(--c-charcoal); margin-bottom: 12px; }
.service-card p { color: var(--c-text-muted); font-size: 0.95rem; margin-bottom: 18px; }

.service-link {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--c-red);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: border-color 0.18s ease;
}

.service-link:hover { border-color: var(--c-red); }

/* ---------- About + Stats ---------- */
.about { background: #fff; }

.about-grid {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 100px 24px 60px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 70px;
	align-items: center;
}

.about-media { position: relative; padding-bottom: 30px; }

.about-img-main { width: 100%; border-radius: 8px; display: block; }

.about-img-accent {
	position: absolute;
	bottom: 0;
	right: -24px;
	width: 46%;
	border-radius: 8px;
	border: 6px solid #fff;
	box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.about-badge {
	position: absolute;
	top: 24px;
	left: -20px;
	background: var(--c-red);
	color: #fff;
	padding: 16px 22px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(230,43,37,0.35);
}

.about-badge strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.9rem;
	line-height: 1;
}

.about-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; }

.about-content { text-align: left; }
.about-content .section-title { margin-bottom: 18px; }
.about-content > p { color: var(--c-text-muted); margin-bottom: 26px; }

.check-list { list-style: none; padding: 0; margin: 0 0 32px; }

.check-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 9px 0;
	font-weight: 500;
	color: var(--c-charcoal);
}

.check-mark {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	color: var(--c-red);
}

.about-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.about-phone { display: flex; flex-direction: column; text-decoration: none; }
.about-phone-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); }
.about-phone-number { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-red); }

.stats-row {
	background: var(--c-charcoal);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat-item { text-align: center; padding: 46px 16px; border-right: 1px solid #2c2c2c; }
.stat-item:last-child { border-right: none; }

.stat-number { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--c-yellow); line-height: 1; }
.stat-label { display: block; font-size: 0.82rem; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }

/* ---------- Process ---------- */
.process {
	background-color: var(--c-charcoal);
	background-image: repeating-linear-gradient(115deg, transparent 0 80px, rgba(230,43,37,0.06) 80px 82px, transparent 82px 160px, rgba(236,198,101,0.06) 160px 162px);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.process-step {
	position: relative;
	background: var(--c-charcoal-2);
	border: 1px solid #2c2c2c;
	border-radius: 8px;
	padding: 44px 30px 36px;
	text-align: center;
}

.process-num {
	position: absolute;
	top: 18px;
	right: 22px;
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 700;
	color: rgba(255,255,255,0.07);
	line-height: 1;
}

.process-icon {
	display: inline-flex;
	width: 60px;
	height: 60px;
	color: var(--c-yellow);
	margin-bottom: 20px;
}

.process-step h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { color: var(--c-text-dim); font-size: 0.95rem; margin: 0; }

/* ---------- CTA Band ---------- */
.cta-band { background: var(--c-red); }

.cta-band-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 56px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 34px;
	flex-wrap: wrap;
}

.cta-band-text { text-align: left; }
.cta-band-text h2 { color: #fff; font-size: 1.9rem; max-width: 560px; }

/* ---------- Booking ---------- */
.booking { background: var(--c-charcoal); }

.booking-grid {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 100px 24px;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: start;
}

.booking-content { text-align: left; color: var(--c-text-light); }
.booking-content .section-title { color: #fff; margin-bottom: 16px; }
.booking-content > p { color: var(--c-text-dim); margin-bottom: 26px; }

.booking-points { list-style: none; padding: 0; margin: 0; }
.booking-points li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--c-text-light); }
.booking-points .check-mark { color: var(--c-yellow); }

/* ---------- Contact Form 7 (booking form) ---------- */
.booking-form .wpcf7-form p {
	margin: 0 0 18px;
}

.booking-form label {
	display: block;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #fff !important;
	line-height: 1.8;
}

.booking-form .wpcf7-form-control-wrap {
	display: block;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--c-line);
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--c-text);
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	box-sizing: border-box;
}

.booking-form input:focus,
.booking-form textarea:focus {
	outline: none;
	border-color: var(--c-red);
	box-shadow: 0 0 0 3px rgba(230, 43, 37, 0.12);
}

.booking-form textarea {
	min-height: 130px;
	resize: vertical;
}

/* Submit button — matches your .btn-red */
.booking-form .wpcf7-submit {
	display: inline-block;
	width: 100%;
	padding: 16px 32px;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	background: var(--c-red);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.12s ease;
}

.booking-form .wpcf7-submit:hover {
	background: var(--c-red-dark);
	transform: translateY(-2px);
}

/* Validation + response messaging */
.booking-form .wpcf7-not-valid-tip {
	color: var(--c-red);
	font-size: 0.82rem;
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	margin-top: 4px;
}

.booking-form input.wpcf7-not-valid,
.booking-form textarea.wpcf7-not-valid {
	border-color: var(--c-red);
}

.booking-form .wpcf7-response-output {
	margin: 8px 0 0 !important;
	padding: 12px 16px !important;
	border-radius: 4px;
	font-size: 0.9rem;
	border-width: 1px;
}

/* Spinner alignment */
.booking-form .wpcf7-spinner {
	margin: 12px auto 0;
	display: block;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--c-offwhite); }

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.testimonial-card {
	background: #fff;
	border-radius: 8px;
	padding: 36px 30px;
	text-align: left;
	border: 1px solid var(--c-line);
	margin: 0;
	position: relative;
}

.quote-mark {
	display: inline-flex;
	width: 44px;
	height: 44px;
	color: var(--c-red);
	margin-bottom: 18px;
}

.testimonial-card blockquote {
	border: none;
	margin: 0 0 22px;
	padding: 0;
	font-size: 1.02rem;
	font-style: italic;
	color: var(--c-text);
	line-height: 1.6;
}

.testimonial-name { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-charcoal); font-size: 1rem; }
.testimonial-role { display: block; font-size: 0.85rem; color: var(--c-text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
	.services-grid,
	.process-grid,
	.testimonials-grid { grid-template-columns: repeat(2, 1fr); }

	.hero h1 { font-size: 3rem; }
}

@media (max-width: 860px) {
	.about-grid,
	.booking-grid { grid-template-columns: 1fr; }

	.about-media { max-width: 480px; }

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

	.stats-row { grid-template-columns: repeat(2, 1fr); }
	.stat-item { border-right: none; border-bottom: 1px solid #2c2c2c; }
	.stat-item:nth-child(odd) { border-right: 1px solid #2c2c2c; }
}

@media (max-width: 600px) {
	.section-inner { padding: 60px 20px; }
	.hero-content { padding: 70px 20px; }
	.hero h1 { font-size: 2.4rem; }
	.section-title { font-size: 1.8rem; }

	.services-grid,
	.process-grid,
	.testimonials-grid,
	.trust-strip-inner { grid-template-columns: 1fr; }

	.cta-band-inner { flex-direction: column; text-align: center; }
	.cta-band-text { text-align: center; }
	.cta-band-text .eyebrow { justify-content: center; }

	.hero-actions { flex-direction: column; align-items: stretch; }
	.btn { justify-content: center; }

	.about-img-accent { width: 50%; right: 0; }
	.about-badge { left: 0; }
}

/* ---------- Custom Footer ---------- */
.hm-footer {
	background: #0f0f0f;
	color: var(--c-text-dim);
	font-family: var(--font-body);
}

.hm-footer-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 70px 24px 50px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: 50px;
}

.hm-footer-logo {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	font-size: 1.5rem;
	margin: 0 0 16px;
}

.hm-footer-brand p {
	font-size: 0.92rem;
	line-height: 1.7;
	margin-bottom: 18px;
	max-width: 320px;
}

.hm-footer-phone {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--c-yellow);
	text-decoration: none;
}

.hm-footer-col h4 {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	font-size: 1rem;
	margin: 0 0 20px;
	padding-bottom: 12px;
	position: relative;
}

.hm-footer-col h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 3px;
	background: var(--c-red);
	transform: skewX(-20deg);
}

.hm-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hm-footer-col li {
	padding: 6px 0;
	font-size: 0.92rem;
}

.hm-footer-col a {
	color: var(--c-text-dim);
	text-decoration: none;
	transition: color 0.18s ease;
}

.hm-footer-col a:hover {
	color: var(--c-yellow);
}

.hm-footer-contact li {
	display: flex;
	flex-direction: column;
}

.hm-footer-contact span {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #6f6f6f;
	margin-bottom: 2px;
}

.hm-footer-bottom {
	border-top: 1px solid #262626;
	padding: 22px 24px;
	text-align: center;
}

.hm-footer-bottom p {
	max-width: var(--maxw);
	margin: 0 auto;
	font-size: 0.82rem;
	color: #7a7a7a;
}

@media (max-width: 860px) {
	.hm-footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}

@media (max-width: 500px) {
	.hm-footer-inner {
		grid-template-columns: 1fr;
	}
}

#colophon {
    display: none !important;
}

@media (min-width: 1200px) {
    .ast-plain-container.ast-no-sidebar #primary {
        margin-top: 0;
        margin-bottom: 0;
    }
}