:root {
    --color-bg: #fbf8f2;
    --color-surface: #fffdf8;
    --color-surface-strong: #ffffff;
    --color-text: #253329;
    --color-muted: #617062;
    --color-heading: #233d2e;
    --color-border: #eadfd4;
    --color-green: #6f8062;
    --color-green-dark: #2f4b39;
    --color-peach: #ea7e64;
    --color-peach-soft: #f7d3c6;
    --shadow-soft: 0 10px 30px rgba(79, 58, 41, 0.055);
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Montserrat", Arial, sans-serif;
    --container: 1200px;
    --radius: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-peach);
}

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(234, 126, 100, 0.55);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    transform: translateY(-160%);
    background: var(--color-green-dark);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container.narrow {
    width: min(calc(100% - 40px), 860px);
}

.section {
    padding: 58px 0;
}

.section-heading {
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading--left {
    margin: 0 0 22px;
    text-align: left;
}

.section-heading h2,
.archive-header h1,
.entry-card h1 {
    margin: 0;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 700;
}

.section-heading::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--color-peach);
    border-radius: 999px;
}

.section-heading--left::after {
    margin-left: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--color-green-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border: 2px solid var(--color-peach);
    border-radius: 50%;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--color-peach);
    color: #fff;
    box-shadow: 0 12px 30px rgba(234, 126, 100, 0.22);
}

.button--primary:hover {
    background: #d96f57;
    color: #fff;
}

.button--outline {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--color-peach);
    color: var(--color-green-dark);
}

.button--wide {
    width: 100%;
}

.icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: currentColor;
    flex: 0 0 auto;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(234, 223, 212, 0.7);
    transition: box-shadow 0.18s ease, background-color 0.18s ease;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 12px 30px rgba(55, 45, 34, 0.06);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 1.54rem;
    line-height: 0.96;
    font-weight: 700;
}

.brand:hover,
.footer-brand:hover {
    color: var(--color-heading);
}

.brand__mark {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand__text {
    display: grid;
    gap: 2px;
}

.brand__text strong {
    font-weight: 700;
}

.primary-nav {
    margin-left: auto;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.primary-nav__list a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.header-cta {
    flex: 0 0 auto;
}

.mobile-nav-cta {
    display: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-heading);
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.hero {
    padding: 34px 0 0;
    background: linear-gradient(90deg, #fbf8f2 0%, #fbf8f2 50%, #f6eee7 100%);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    align-items: center;
    gap: 42px;
}

.hero h1 {
    max-width: 620px;
    margin: 0 0 14px;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(3.15rem, 6.4vw, 5.85rem);
    line-height: 0.95;
    font-weight: 700;
}

.hero__subtitle {
    max-width: 560px;
    margin: 0 0 20px;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
    line-height: 1.12;
    font-weight: 700;
}

.hero__description {
    max-width: 560px;
    margin: 0;
    color: var(--color-text);
    font-size: 1.06rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero__media {
    min-height: 560px;
    border-radius: 0;
    overflow: hidden;
    background: #f2e6dc;
    box-shadow: none;
}

.hero__photo {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center right;
}

.services {
    background: var(--color-surface);
    border-top: 1px solid rgba(234, 223, 212, 0.65);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 208px;
    padding: 24px 15px 20px;
    text-align: center;
    background: var(--color-surface-strong);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(68, 58, 45, 0.035);
}

.service-card__icon,
.visit-step__icon,
.booking-panel__icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #efeee6;
    color: var(--color-green-dark);
}

.service-card__icon img,
.visit-step__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.service-card__icon .icon,
.visit-step__icon .icon,
.booking-panel__icon .icon {
    width: 40px;
    height: 40px;
}

.service-card h3,
.visit-step h3,
.post-card h2 {
    margin: 0 0 9px;
    color: var(--color-heading);
    font-size: 1rem;
    line-height: 1.25;
}

.service-card p,
.visit-step p,
.booking-panel p,
.contact-card p,
.post-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.visit {
    padding-bottom: 26px;
}

.two-column,
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.panel,
.contact-card,
.testimonial-card,
.entry-card,
.post-card {
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.visit-panel,
.booking-panel,
.qualifications-card,
.contact-card,
.entry-card,
.post-card {
    padding: 32px;
}

.visit-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.visit-step {
    position: relative;
    min-height: 176px;
    text-align: center;
}

.visit-step__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
}

.visit-step__number {
    display: block;
    margin-bottom: 4px;
    color: var(--color-peach);
    font-size: 0.8rem;
    font-weight: 700;
}

.booking-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-panel__content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
}

.booking-panel__icon {
    width: 76px;
    height: 76px;
    margin: 0;
    background: var(--color-peach-soft);
    color: var(--color-green-dark);
}

.about {
    padding-top: 32px;
}

.about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
}

.about-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    overflow: hidden;
}

.about-card__image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center 18%;
}

.about-card__content {
    padding: 32px;
}

.rich-text p {
    margin: 0 0 16px;
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.check-list,
.contact-list,
.hours-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list .icon,
.contact-list .icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--color-green);
}

.testimonials {
    background: var(--color-surface);
}

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

.testimonial-card {
    padding: 28px;
}

.stars {
    color: var(--color-peach);
    letter-spacing: 0;
    margin-bottom: 13px;
}

.testimonial-card p {
    margin: 0 0 18px;
    color: var(--color-text);
}

.testimonial-card strong {
    color: var(--color-heading);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface-strong);
    overflow: hidden;
}

.faq-item__button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border: 0;
    background: transparent;
    color: var(--color-heading);
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}

.faq-item__chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.faq-item__button[aria-expanded="true"] .faq-item__chevron {
    transform: rotate(225deg);
}

.faq-item__panel {
    padding: 0 18px 18px;
    color: var(--color-muted);
}

.faq-item__panel p {
    margin: 0;
}

.contact {
    padding-top: 38px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    min-height: 286px;
}

.contact-card__mark {
    margin-top: 24px;
    color: var(--color-green);
}

.contact-card__mark .icon {
    width: 72px;
    height: 72px;
}

.contact-list a {
    text-decoration: underline;
    text-decoration-color: rgba(234, 126, 100, 0.35);
    text-underline-offset: 4px;
}

.map-link {
    display: grid;
    gap: 14px;
}

.map-link span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--color-text);
    font-weight: 600;
}

.map-link img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(234, 223, 212, 0.75);
    padding-bottom: 8px;
}

.hours-list strong {
    color: var(--color-heading);
    text-align: right;
}

.site-footer {
    padding: 24px 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.footer-brand {
    font-size: 1.1rem;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.content-page {
    padding: 72px 0;
}

.archive-header {
    max-width: 680px;
    margin-bottom: 30px;
}

.archive-header p,
.entry-meta {
    color: var(--color-muted);
}

.entry-card {
    padding: 40px;
}

.entry-content a {
    color: var(--color-peach);
    text-decoration: underline;
}

.entry-image,
.post-card__image img {
    width: 100%;
    border-radius: var(--radius);
    margin: 20px 0;
}

.post-card {
    padding: 24px;
}

.post-card h2 a {
    color: var(--color-heading);
}

.post-card__image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 0 0 18px;
}

@media (max-width: 1180px) {
    .header-inner {
        gap: 16px;
    }

    .primary-nav__list {
        gap: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .visit-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand__mark {
        width: 52px;
        height: 52px;
    }

    .brand {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .primary-nav {
        position: fixed;
        inset: 78px 16px auto;
        display: none;
        margin: 0;
        padding: 18px;
        background: var(--color-surface-strong);
        border: 1px solid var(--color-border);
        border-radius: var(--radius);
        box-shadow: var(--shadow-soft);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list {
        display: grid;
        gap: 4px;
    }

    .primary-nav__list a {
        width: 100%;
        min-height: 48px;
    }

    .mobile-nav-cta {
        display: inline-flex;
        margin-top: 12px;
    }

    .header-cta {
        display: none;
    }

    .hero__grid,
    .two-column,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 34px;
    }

    .hero__media {
        min-height: 440px;
        border-radius: var(--radius);
    }

    .hero__photo {
        min-height: 440px;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

    .about-card__image {
        max-height: 420px;
    }

    .faq-grid,
    .testimonials-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 44px 0;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.2rem);
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
        padding-inline: 16px;
    }

    .services-grid,
    .visit-steps,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .visit-panel,
    .booking-panel,
    .qualifications-card,
    .contact-card,
    .entry-card,
    .post-card,
    .about-card__content {
        padding: 24px;
    }

    .booking-panel__content {
        align-items: flex-start;
    }

    .footer-inner {
        display: grid;
        justify-items: start;
    }
}

@media (max-width: 420px) {
    .brand__text {
        display: none;
    }

    .hero__media,
    .hero__photo {
        min-height: 340px;
    }
}
