/* ════════════════════════════════════════════════════════════════
   HOME PAGE STYLES
   ════════════════════════════════════════════════════════════════ */

/* --- Keyframes --- */
@keyframes amHeroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

@keyframes amFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes amFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes amScrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Hero */
.am-hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.am-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.am-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: amHeroZoom 8s ease-out forwards;
}

.am-hero__overlay-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55), transparent);
}

.am-hero__overlay-v {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(90 64 33 / 92%), rgb(90 64 33 / 50%));
}

.am-hero__content {
    padding: 14rem 3rem 8rem;
}

.am-hero__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: amFadeLeft 1s ease 0.4s both;
}

.am-hero__eyebrow-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 500;
}

.am-hero__heading {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: clamp(40px, 8vw, 84px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 1000px;
    font-weight: 400;
    animation: amFadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s both;
}

.am-hero__subtext {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 1.0625rem;
    max-width: 900px;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: amFadeUp 1s ease 0.8s both;
}

.am-hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    animation: amFadeUp 1s ease 1s both;
}

.am-hero__actions .am-btn--outline {
    border-color: var(--white) !important;
    color: var(--white);
}

.am-hero__actions .am-btn--outline:hover {
    background: var(--white) !important;
    color: var(--dark);
}

.am-hero__scroll {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.am-hero__scroll-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
}

.am-hero__scroll-line {
    width: 1px;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.am-hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    animation: amScrollLine 2s linear infinite;
}

/* About Section */
.am-home-about {
    padding: 5rem 3rem 9rem 3rem;
    background: var(--white);
    position: relative;
    overflow: visible;
}

.am-home-about__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.am-home-about__images {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.am-home-about__img-main {
    width: 85%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.am-home-about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.am-home-about__img-accent {
    position: absolute;
    bottom: -3rem;
    right: 0;
    width: 55%;
    aspect-ratio: 1.2 / 1;
    z-index: 10;
    padding: 0.75rem;
    background: var(--white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.am-home-about__img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.am-home-about__content {
    padding-left: 0;
}

.am-home-about__eyebrow {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.am-home-about__heading {
    font-family: var(--font-serif);
    color: var(--primary);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 3rem;
    font-weight: 400;
}

.am-home-about__body {
    color: rgba(17, 17, 17, 0.6);
    font-weight: 400;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 540px;
}

.am-home-about__body p+p {
    margin-top: 1.5rem;
}

.am-home-about__cta {
    padding-top: 2rem;
    border-top: 1px solid rgba(140, 110, 76, 0.2);
}

.am-home-about__link {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition);
}

.am-home-about__link:hover {
    color: var(--primary);
}

.am-home-about__link svg {
    transition: transform var(--transition);
}

.am-home-about__link:hover svg {
    transform: translateX(4px);
}

/* Stats Grid */
.am-stats {
    background: var(--white);
    padding: 0;
}

.am-stats__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    border: 1px solid rgb(163 130 99);
}

.am-stats__intro,
.am-stats__cell {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgb(163 130 99);
    border-bottom: 1px solid rgb(163 130 99);
}

.am-stats__grid>*:nth-child(3n) {
    border-right: none;
}

/* Stats Grid Backgrounds */
.am-stats__intro {
    background: #f1efef;
}

.am-stats__cell {
    background: var(--white);
    transition: background var(--transition);
}

.am-stats__cell:hover {
    background: #f1efef;
}

.am-stats__intro-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.am-stats__intro-body {
    color: rgba(17, 17, 17, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.am-stats__number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4rem);
    color: var(--dark);
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}

.am-stats__cell:hover .am-stats__number {
    color: var(--primary);
}

.am-stats__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(17, 17, 17, 0.9);
    font-weight: 600;
}

/* Manors / Properties Section */
.am-home-manors {
    background: var(--white);
}

.am-home-manors__inner {
    width: 100%;
}

.am-home-manors__header {
    padding: 10rem 3rem 6rem;
    text-align: center;
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-home-manors__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.am-home-manors__heading {
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.am-home-manors__subtext {
    color: rgba(17, 17, 17, 0.6);
    font-weight: 400;
    font-size: 1.0625rem;
    max-width: 560px;
    margin-inline: auto;
}

.am-featured-manor {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.am-featured-manor--light {
    background: var(--light);
}

.am-featured-manor--white {
    background: var(--white);
}

.am-featured-manor--reverse {}

.am-featured-manor--reverse .am-featured-manor__image-side {
    left: auto;
    right: 0;
}

.am-featured-manor--reverse .am-featured-manor__content-side {
    justify-content: flex-start;
}

.am-featured-manor__image-side {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    min-height: auto;
    overflow: hidden;
}

.am-featured-manor__image-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease-out;
}

.am-featured-manor:hover .am-featured-manor__image-side img {
    transform: scale(1.05);
}

.am-featured-manor__content-side {
    width: 100%;
    padding: 8rem 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.am-featured-manor__content-inner {
    width: 50%;
    padding-left: 8rem;
    padding-right: 5vw;
    max-width: 800px;
}

.am-featured-manor--reverse .am-featured-manor__content-inner {
    padding-left: 5vw;
    padding-right: 8rem;
}

.am-featured-manor__number {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 6rem);
    color: rgba(140, 110, 76, 0.15);
    margin-bottom: 0.5rem;
    line-height: 1;
    font-weight: 400;
}

.am-featured-manor__location {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.am-featured-manor__title {
    font-family: var(--font-serif);

    font-size: 34px;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.am-featured-manor__desc {
    color: rgba(17, 17, 17, 0.6);
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 3rem;
    max-width: 480px;
}

.am-featured-manor__stats {
    display: flex;
    gap: 6rem;
    margin-bottom: 3.5rem;
    padding-block: 1.5rem;
    border-top: 1px solid rgba(140, 110, 76, 0.15);
    border-bottom: 1px solid rgba(140, 110, 76, 0.15);
}

.am-featured-manor__stat-val {
    font-family: var(--font-serif);
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.am-featured-manor__stat-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(17, 17, 17, 0.4);
    font-weight: 600;
}

.am-featured-manor__btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    padding: 1.25rem 3rem;
    background: var(--primary);
    color: var(--white);
    transition: all var(--transition);
}

.am-featured-manor__btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 54, 33, 0.2);
}

.am-featured-manor__btn svg {
    transition: transform var(--transition);
}

.am-featured-manor__btn:hover svg {
    transform: translateX(4px);
}

/* Unrivaled Amenities */
.am-home-amenities {
    padding: 5rem 1.5rem;
    background: #4a3621;
    color: var(--white);
    position: relative;
}

.am-home-amenities__header {
    text-align: center;
    margin-bottom: 4rem;
}

.am-home-amenities__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.am-home-amenities__eyebrow .am-divider {
    background: rgba(255, 255, 255, 0.15);
    width: 80px;
    height: 1px;
}

.am-home-amenities__eyebrow .am-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 600;
}

.am-home-amenities__heading {
    font-family: var(--font-serif);
    line-height: 1.1;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.am-home-amenities__subtext {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 1.125rem;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.8;
}

.am-home-amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.am-amenity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.am-amenity-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.am-amenity-card__icon {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.am-amenity-card__icon svg {
    width: 60px;
    height: 60px;
    stroke-width: 1.1;
}

.am-amenity-card__title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.am-amenity-card__desc {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* CTA Strip */
.am-home-cta {
    position: relative;
    padding: 8rem 1.5rem;
    background: var(--dark);
    text-align: center;
    overflow: hidden;
}

.am-home-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.am-home-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.am-home-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--dark)/0.8, var(--dark));
}

.am-home-cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-inline: auto;
}

.am-home-cta__eyebrow {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.am-home-cta__heading {
    font-family: var(--font-serif);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.am-home-cta__subtext {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 1.0625rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.am-home-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Home Locale */
.am-home-locale {
    padding: 5rem 1.5rem;
    background: var(--white);
    overflow: hidden;
}

.am-home-locale__header {
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 6rem;
}

.am-home-locale__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.am-home-locale__eyebrow .am-divider {
    background: rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 1px;
}

.am-home-locale__eyebrow .am-label {
    color: rgba(17, 17, 17, 0.4);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 600;
}

.am-home-locale__heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.am-home-locale__subtext {
    color: rgba(17, 17, 17, 0.5);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
}

.am-home-locale__grid {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    overflow: hidden;
    position: relative;
}

.am-home-locale__track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
    transition: transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.am-home-locale__track.is-snapping {
    transition: none;
}

.am-home-locale__slider::-webkit-scrollbar {
    display: none;
}

.am-locale-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.am-locale-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 2rem;
}

.am-locale-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.am-locale-card:hover .am-locale-card__img img {
    transform: scale(1.05);
}

.am-locale-card__tag {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(17, 17, 17, 0.4);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.am-locale-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.am-locale-card__desc {
    color: rgba(17, 17, 17, 0.5);
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6em;
}

.am-locale-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.am-locale-card__title a:hover {
    color: var(--primary);
}

/* Home Reviews */
.am-home-reviews {
    padding: 5rem 1.5rem;
    background: #4a3621;
    /* Deep Editorial Brown */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.am-home-reviews__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.2), transparent);
    z-index: 0;
}

.am-home-reviews__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-home-reviews__header {
    text-align: center;
    margin-bottom: 2rem;
}

.am-home-reviews__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.am-home-reviews__heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.am-home-reviews__slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 4rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.am-home-reviews__slider::-webkit-scrollbar {
    display: none;
}

.am-review-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 380px;
    padding: 4rem 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.am-review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.am-review-card__quote-icon {
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 2rem;
    width: 32px;
    height: 32px;
}

.am-review-card__stars {
    display: flex;
    gap: 4px;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.am-review-card__text {
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    flex: 1;
}

.am-review-card__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.am-review-card__location {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 600;
}

/* FAQ Section */
.am-faq-section {
    padding: 5rem 3rem;
    background: var(--white);
}

.am-faq-section__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-faq-wrap {
    max-width: 900px;
    margin-inline: auto;
}

.am-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.am-faq-item__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.am-faq-item__question {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--dark);
    transition: color var(--transition);
}

.am-faq-item__trigger:hover .am-faq-item__question {
    color: var(--primary);
}

.am-faq-item__icon {
    position: relative;
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.am-faq-item__icon svg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.am-faq-item__icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.am-faq-item__trigger[aria-expanded="true"] .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.am-faq-item__trigger[aria-expanded="true"] .icon-minus {
    opacity: 1;
    transform: rotate(0);
}

.am-faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.am-faq-item__trigger[aria-expanded="true"]+.am-faq-item__body {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.am-faq-item__answer {
    padding-bottom: 2.5rem;
    color: rgba(17, 17, 17, 0.6);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 780px;
}

.am-home-journal {
    padding: 5rem 1.5rem;
    background: #ebebeb;
}

.am-home-journal__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.am-blog-card__body {
    padding: 0px;
}

.am-home-journal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.am-home-journal__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.am-home-journal__heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--dark);
    line-height: 1.1;
}

.am-home-journal__link {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: color var(--transition), gap var(--transition);
    padding-bottom: 0.5rem;
}

.am-home-journal__link:hover {
    color: var(--primary);
    gap: 1rem;
}

/* Home Journal Blog Grid */
.am-home-journal .am-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.am-home-journal .am-blog-card {
    background: transparent;
    transition: none;
    box-shadow: none;
}

.am-home-journal .am-blog-card__img {
    aspect-ratio: 16/10;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.am-home-journal .am-blog-card__img img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.am-home-journal .am-blog-card:hover .am-blog-card__img img {
    transform: scale(1.1);
}

.am-home-journal .am-blog-card__category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--dark);
    z-index: 2;
}

.am-home-journal .am-blog-card__date {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(17, 17, 17, 0.4);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.am-home-journal .am-blog-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--dark);
    transition: color 0.4s ease;
}

.am-home-journal .am-blog-card:hover .am-home-journal .am-blog-card__title,
.am-home-journal .am-blog-card:hover .am-blog-card__title a {
    color: var(--primary);
}

.am-blog-card:hover {
    transform: none;
}

.am-home-journal .am-blog-card__desc {
    font-size: 0.9375rem;
    color: rgba(17, 17, 17, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Responsive Overrides --- */
@media (max-width: 1024px) {
    .am-home-about__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .am-home-about__images {
        height: auto;
    }

    .am-home-about__img-main {
        aspect-ratio: 1;
        height: auto;
    }

    .am-home-about__content {
        padding-top: 3rem;
    }

    .am-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .am-featured-manor {
        flex-direction: column;
        min-height: auto;
        margin-top: 40px;
    }


    .am-featured-manor__image-side {
        position: relative;
        width: 100%;
        min-height: 400px;
    }

    .am-featured-manor__content-side {
        width: 100%;
        padding: 5rem 1.5rem;
    }

    .am-featured-manor__content-inner {
        width: 100%;
        padding: 0;
    }

    .am-home-amenities__grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .am-amenity-card {
        padding: 4rem 2.5rem;
    }

    .am-locale-card {
        max-width: none;
    }

    .am-locale-card__img {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 600px) {
    .am-hero__content {
        padding: 0 1.5rem;
        margin-top: 5rem;
    }

    .am-featured-manor__content-side {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .am-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .am-hero__actions .am-btn {
        width: 100%;
        justify-content: center;
    }

    .am-hero__scroll {
        display: none;
    }

    .am-home-about {
        padding: 50px 15px 50px;
    }

    .am-stats__grid {
        grid-template-columns: 1fr;
    }

    .am-stats__grid>* {
        border-right: none;
    }

    .am-home-reviews__slider {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        padding: 1rem 0 0rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    section.am-stats {
        padding: 50px 15px;
    }

    .am-home-amenities__grid {
        padding: 0px;
    }

    .am-featured-manor__btn {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        font-weight: 600;
        padding: 1.25rem 1rem;
        background: var(--primary);
        color: var(--white);
        transition: all var(--transition);
    }

    .am-home-manors {
        background: var(--white);
        padding: 50px 15px;
    }

    .am-faq-section {
        padding: 50px 15px;
    }

    .am-home-manors__header {
        padding: 8rem 15px 4rem;
    }

    .am-featured-manor--reverse .am-featured-manor__content-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .am-home-locale__eyebrow .am-divider {
        width: 30px;
    }

    .am-locale-card {
        min-width: 0;
    }

    .am-home-locale__eyebrow .am-label {
        letter-spacing: 0.2em;
    }


    .am-home-amenities__grid {
        grid-template-columns: 1fr;
    }

    .am-home-amenities {
        padding: 6rem 0;
    }

    .am-amenity-card {
        padding: 3.5rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .am-locale-card {
        max-width: none;
    }

    .am-locale-card__img {
        aspect-ratio: 16/10;
    }

    .am-home-reviews__slider {
        gap: 1.5rem;
    }

    .am-review-card {
        min-width: 85vw;
        padding: 3rem 2rem;
    }

    .am-home-journal__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .am-home-journal .am-blog-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce vertical padding across sections */
    .am-home-manors__header {
        padding: 4rem 15px 2rem;
    }

    .am-home-amenities {
        padding: 4rem 15px;
    }

    .am-home-locale {
        padding: 4rem 15px;
    }

    .am-home-journal {
        padding: 4rem 15px;
    }

    .am-home-reviews {
        padding: 4rem 15px;
    }

    .am-home-cta {
        padding: 4rem 15px;
    }
    .am-home-locale__header {
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 4rem;
}
}