/* Consultation page styles */
:root {
    --manor-cream: #f7f3ea;
    --manor-terracotta: #a35c3f;
    --manor-dark: #2b1f16;
    --manor-olive: #5c5f3f;
    --manor-text-dark: #2b2b2b;
}
.manor-con-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
}
.manor-con-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 15, 0.35);
}
.manor-con-hero__wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.manor-con-hero__left {
    max-width: 450px;
    color: #fff;
}
.manor-con-hero__title {
    font-family: "ItemsText", Sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
	color: #F1F1E7 !important;
}
.manor-con-hero__title em {
    font-style: italic;
}
.manor-con-hero__text {
    font-size: 16px;
	font-family: "FK Grotesk";
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}
.manor-con-hero__badges {
    display: flex;
    gap: 12px;
    align-items: center;
}
.manor-con-hero__badge {
    height: 60px;
    width: auto;
}
.manor-con-hero__form-card {
    background: #fdfbf6;
    padding: 20px;
    max-width: 550px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.manor-con-hero__form-heading {
    color: #241C14;
	text-align: center;
	font-family: "Items Text";
	font-size: 25.6px;
	font-style: normal;
	font-weight: 400;
	line-height: 29.18px;
	margin-top:30px;
}
.manor-con-hero__form-heading em {
    font-style: italic;
	color: #9C6A43 !important;
}
.manor-con-hero__form-subtext {
    text-align: center;
    margin-bottom: 25px;
	color: #7B746A;
text-align: center;
font-family: "FK Grotesk";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22.1px; /* 170% */
}
.manor-con-hero__iframe-wrap iframe {
    width: 100%;
    border: none;
    min-height: 480px;
}
@media (max-width: 900px) {
    .manor-con-hero__wrap {
        flex-direction: column;
    }
    .manor-con-hero__left {
        max-width: 100%;
        text-align: center;
    }
    .manor-con-hero__form-card {
        max-width: 100%;
    }
}

/* Press / Featured In marquee */
.manor-con-press {
    background: var(--manor-cream);
    padding: 55px 0;
    text-align: center;
    overflow: hidden;
}
.manor-con-press__label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--manor-terracotta);
    margin-bottom: 25px;
}
.manor-con-press__marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.manor-con-press__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: manor-marquee 30s linear infinite;
}
.manor-con-press__marquee:hover .manor-con-press__track {
    animation-play-state: paused;
}
@keyframes manor-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.manor-con-press__logo {
    flex: 0 0 auto;
}
.manor-con-press__logo img {
    max-height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
}
.manor-con-press__logo span {
    font-family: Georgia, serif;
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--manor-text-dark);
    text-transform: uppercase;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .manor-con-press__track {
        gap: 35px;
    }
    .manor-con-press__logo span {
        font-size: 14px;
    }
}

/* Buy Now Pay Later */
.manor-con-bnpl {
    background: #ece7d9;
    padding: 90px 20px;
}
.manor-con-bnpl__wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.manor-con-bnpl__heading {
    color: #241C14;
	text-align: center;
	font-family: "Items Text";
	font-size: 33.6px;
	font-style: normal;
	font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--manor-text-dark);
    margin-bottom: 45px;
}
.manor-con-bnpl__heading em {
    font-style: italic;
    text-transform: uppercase;
}
.manor-con-bnpl__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.manor-con-bnpl__card {
    background: #fdfbf6;
    padding: 40px 35px;
    border-radius: 4px;
    text-align: center;
}
.manor-con-bnpl__logo {
    height: 32px;
    width: auto;
    margin: 0 auto 20px;
}
.manor-con-bnpl__desc {
	color: #241C14;
	text-align: center;
	font-family: "FK Grotesk";
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.manor-con-bnpl__btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: 0.2s ease;
}
.manor-con-bnpl__btn--dark {
    background: var(--manor-dark);
    color: #fff !important;
}
.manor-con-bnpl__btn--dark:hover {
    background: #000;
}
.manor-con-bnpl__btn--outline {
    background: transparent;
    color: var(--manor-text-dark);
    border: 1px solid var(--manor-text-dark);
}
.manor-con-bnpl__btn--outline:hover {
    background: var(--manor-text-dark);
    color: #fff;
}
@media (max-width: 768px) {
    .manor-con-bnpl__cards {
        grid-template-columns: 1fr;
    }
}

/* Olive CTA band */
.manor-con-cta {
    background: var(--manor-olive);
    padding: 80px 20px;
    text-align: center;
}
.manor-con-cta__wrap {
    max-width: 800px;
    margin: 0 auto;
}
.manor-con-cta__heading {
	color: #F1F1E7;
	text-align: center;
	font-family: "Items Text";
    font-size: 33px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 35px;
    line-height: 1.5;
}
.manor-con-cta__heading em {
    font-style: italic;
    text-transform: uppercase;
}
.manor-con-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.manor-con-cta__btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 12px;
	font-family: "FK Grotesk";
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.2s ease;
}
.manor-con-cta__btn--solid {
    background: #fdfbf6;
    color: var(--manor-olive);
	text-decoration: none !important;
}
.manor-con-cta__btn--solid:hover {
    background: var(--manor-dark);
    color: #fff;
}
.manor-con-cta__btn--outline {
    background: transparent;
    color: #fdfbf6;
    border: 1px solid #fdfbf6;
	text-decoration: none !important;
	display: none !important;

}
.manor-con-cta__btn--outline:hover {
    background: #fdfbf6;
    color: var(--manor-olive);
}
@media (max-width: 600px) {
    .manor-con-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== 404 Hero ===== */
.manor-404-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}
.manor-404-hero__eyebrow {
    font-family: "FK Grotesk Mono";
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #6b6b6b;
    margin-bottom: 24px;
}
.manor-404-hero__code {
	font-family: "Items Text";
	font-weight: 400;
    font-size: 171px;
    line-height: 1;
    color: #212934;
    margin: 0 0 4px;
}
.manor-404-hero__subhead {
	font-family: "Items Text";
    font-style: italic;
    font-size: 48px;
    color: #1a2332;
    margin: 0 0 48px;
}
.manor-404-hero__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e0d8;
    border: 1px solid #e5e0d8;
    text-align: left;
}
.manor-404-card {
    background: #fff;
    padding: 32px;
}
.manor-404-card--dark {
    background: #3d4a2f;
    color: #f5f0e8;
}
.manor-404-card__number {
	color: #A8A056;
	font-family: "FK Grotesk Mono";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
    display: block;
    margin-bottom: 16px;
}
.manor-404-card--dark .manor-404-card__number { color: #c9a876; }
.manor-404-card__title {
	color: #1A1710;
	font-family: "Items Text";
	font-size: 24px;
	font-weight: 400;
    margin: 0 0 12px;
}
.manor-404-card__text {
	color: #766F66;
	font-family: "FK Grotesk";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
    line-height: 1.5;
    margin: 0 0 20px;
}
.manor-404-card--dark .manor-404-card__text { color: #d8d5c8; }
.manor-404-card__link {
    color: #8C523B;
	font-family: "FK Grotesk";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
}
.manor-404-card--dark .manor-404-card__link { color: #c9a876; }

/* ===== Popular Treatments ===== */
.manor-404-treatments {
    background: #8b5a42;
    padding: 60px 24px;
}
.manor-404-treatments__eyebrow,
.manor-404-treatments__heading,
.manor-404-treatments__grid {
    max-width: 1200px;
    margin: 0 auto;
}
.manor-404-treatments__eyebrow {
	color: #FFF;
	font-family: "FK Grotesk Mono";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.manor-404-treatments__heading {
	color: #F1F1E7;
	font-family: "Items Text";
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
    color: #fff;
	margin-bottom: 30px;
   // margin: 0 0 40px 90px;
}
.manor-404-treatments__heading em { font-style: italic; }
.manor-404-treatments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.25);
}
.manor-treatment-card {
    background: #8b5a42;
    padding: 28px;
    color: #fff;
}
.manor-treatment-card__category {
	color: #F1F1E7;
	font-family: "FK Grotesk Mono";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
    display: block;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.manor-treatment-card__title {
	color: #F1F1E7;
	font-family: "Items Text";
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
    margin: 0 0 12px;
}
.manor-treatment-card__text {
	color: #F1F1E7;
	font-family: "FK Grotesk";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
    line-height: 1.5;
    margin: 0 0 20px;
}
.manor-treatment-card__link {
	color: #F1F1E7;
	font-family: "FK Grotesk Mono";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
    text-decoration: none;
}
.manor-treatment-card__link:hover {
	color: #3d4a2f;
    text-decoration: none;
}

/* ===== Find Manor Near You ===== */
.manor-404-locations {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.manor-404-locations__heading {
	color: #212934;
	leading-trim: both;
	text-edge: cap;
	font-family: "Items Text";
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 40px;
}
.manor-404-locations__heading em { font-style: italic; }
.manor-404-locations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
}
.manor-location-card {
    display: block;
    text-decoration: none;
    color: inherit;
	//background: #fff; /* was inheriting the section's off-white/beige */

}
.manor-location-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}
.manor-location-card__tag {
    display: block;
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 6px;
}
.manor-location-card__city {
	color: #212934;
	font-family: "Items Text";
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
    margin: 0 0 10px;
}
.manor-location-card__address,
.manor-location-card__phone,
.manor-location-card__hours {
	color: #656565;
	font-family: "FK Grotesk";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.manor-location-card__city,
.manor-location-card__address,
.manor-location-card__phone,
.manor-location-card__hours {
    padding-left: 24px; /* adjust value to match your Figma spec exactly */
}
.manor-404-card--dark .manor-404-card__title {
    color: #f5f0e8; /* or whatever color you want just for this card */
}
@media (max-width: 768px) {
    .manor-404-hero__code { font-size: 95px; }
    .manor-404-hero__cards,
    .manor-404-treatments__grid,
    .manor-404-locations__grid {
        grid-template-columns: 1fr;
    }
	.manor-404-hero__subhead{
		font-size: 38px;
	}
}