:root {
    --bg: #f7f2eb;
    --surface: #fffdf9;
    --surface-alt: #eadfce;
    --surface-muted: #dfe5da;
    --text: #2e322b;
    --text-soft: #5f6658;
    --accent: #7f907d;
    --accent-deep: #465044;
    --gold: #b39869;
    --border: rgba(70, 80, 68, 0.14);
    --shadow: 0 20px 45px rgba(46, 50, 43, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1120px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(234, 223, 206, 0.7), transparent 28%),
        linear-gradient(180deg, #f9f6f0 0%, var(--bg) 45%, #f5efe7 100%);
    color: var(--text);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 1000;
    background: var(--accent-deep);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent-deep);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
.brand__text,
.logo-fallback {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.6rem, 8vw, 5rem);
    margin: 0 0 1rem;
}

h2 {
    font-size: clamp(2rem, 5.4vw, 3.4rem);
    margin: 0 0 1rem;
}

h3 {
    font-size: clamp(1.45rem, 4vw, 2rem);
    margin: 0 0 0.75rem;
}

p {
    margin: 0 0 1rem;
}

.button,
.text-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--accent-deep);
    color: #fff;
    box-shadow: 0 12px 25px rgba(70, 80, 68, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #394238;
}

.button--secondary {
    background: rgba(255, 253, 249, 0.7);
    border-color: var(--border);
    color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    background: #fff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-deep);
    font-weight: 700;
    text-decoration: none;
}

.text-link::after {
    content: "->";
}

.demo-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        linear-gradient(160deg, rgba(247, 242, 235, 0.96), rgba(223, 229, 218, 0.96)),
        rgba(247, 242, 235, 0.92);
    backdrop-filter: blur(10px);
}

.demo-gate[hidden] {
    display: none;
}

.demo-gate__panel {
    width: min(100%, 29rem);
    padding: 2rem;
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(127, 144, 125, 0.22);
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.demo-gate__logo,
.brand__logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 50%;
}

.demo-gate__logo {
    margin: 0 auto 1rem;
}

.logo-fallback {
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    color: var(--accent-deep);
    background: linear-gradient(145deg, var(--surface-alt), #f6efe5);
}

.demo-gate__form {
    display: grid;
    gap: 0.85rem;
    text-align: left;
}

.demo-gate__form input {
    min-height: 3.2rem;
}

.demo-gate__hint,
.section-note,
.privacy-note {
    color: var(--text-soft);
    font-size: 0.96rem;
}

.site-shell {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.site-shell.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(247, 242, 235, 0.82);
    border-bottom: 1px solid rgba(70, 80, 68, 0.08);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand__text {
    font-size: 1.55rem;
}

.menu-toggle {
    justify-self: end;
    width: 3rem;
    height: 3rem;
    padding: 0.65rem;
    display: inline-grid;
    gap: 0.28rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.site-nav {
    grid-column: 1 / -1;
    display: none;
}

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

.site-nav ul,
.footer-links,
.trust-pills {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul {
    display: grid;
    gap: 0.3rem;
    padding: 0.7rem 0 0.2rem;
}

.site-nav a {
    display: block;
    padding: 0.85rem 0.9rem;
    text-decoration: none;
    border-radius: 16px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.65);
}

.header-actions {
    display: none;
}

.hero,
.section {
    padding: 4.5rem 0;
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero {
    padding-top: 2rem;
}

.hero__grid,
.section-grid,
.location-grid,
.contact-grid,
.reviews-panel {
    display: grid;
    gap: 1.5rem;
}

.hero__content {
    display: grid;
    align-content: center;
}

.hero__lead {
    font-size: 1.1rem;
    color: var(--text);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1rem 0 1.25rem;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.trust-pills li {
    padding: 0.55rem 0.9rem;
    background: rgba(255, 253, 249, 0.78);
    border: 1px solid rgba(70, 80, 68, 0.08);
    border-radius: 999px;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.hero__media img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media,
.gallery-card,
.service-card,
.trust-card,
.step-card,
.philosophy-card,
.location-card,
.map-placeholder,
.contact-card,
.review-stat,
.success-panel {
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.84);
    border: 1px solid rgba(70, 80, 68, 0.08);
    box-shadow: var(--shadow);
}

.hero__media {
    min-height: 24rem;
    overflow: hidden;
}

.image-fallback {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--surface-muted), var(--surface-alt));
    color: var(--accent-deep);
    text-align: center;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.58), rgba(234, 223, 206, 0.26));
}

.philosophy-card,
.location-card,
.map-placeholder,
.contact-card,
.success-panel {
    padding: 1.5rem;
}

.philosophy-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

.gallery-grid,
.cards-grid,
.trust-grid,
.steps-grid {
    display: grid;
    gap: 1rem;
}

.gallery-card {
    min-height: 14rem;
    overflow: hidden;
}

.service-card,
.trust-card,
.step-card {
    padding: 1.4rem;
}

.service-card__ideal {
    color: var(--text-soft);
}

.service-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-card__icon {
    width: 2.3rem;
    height: 2.3rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d5e0d2, var(--accent));
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.68);
}

.step-card__number {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--accent-deep);
    font-weight: 800;
}

.reviews-panel {
    align-items: center;
}

.review-stats {
    display: grid;
    gap: 1rem;
}

.review-stat {
    padding: 1.5rem;
}

.review-stat strong {
    display: block;
    font-size: 2.6rem;
    font-family: "Cormorant Garamond", serif;
}

.contact-details {
    font-style: normal;
}

.hours-list {
    margin: 0;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(70, 80, 68, 0.08);
}

.hours-list div:last-child {
    border-bottom: 0;
}

.map-placeholder {
    min-height: 18rem;
    display: grid;
    align-content: center;
    background:
        linear-gradient(135deg, rgba(223, 229, 218, 0.95), rgba(234, 223, 206, 0.95)),
        repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 255, 255, 0.18) 32px 33px);
}

.map-placeholder span {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(70, 80, 68, 0.08);
    background: rgba(255, 253, 249, 0.84);
}

.faq-item h3 {
    margin: 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.faq-trigger__icon::before {
    content: "+";
    font-size: 1.4rem;
    color: var(--accent-deep);
}

.faq-trigger[aria-expanded="true"] .faq-trigger__icon::before {
    content: "-";
}

.faq-panel {
    padding: 0 1.3rem 1.2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(70, 80, 68, 0.16);
    background: #fffdfb;
    color: var(--text);
}

textarea {
    resize: vertical;
}

.form-error {
    margin: 0;
    color: #8f2f33;
    font-size: 0.94rem;
}

.success-panel {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(223, 229, 218, 0.65));
}

.disclaimer {
    padding-bottom: 5rem;
}

.site-footer {
    padding: 3rem 0 4rem;
    background: #2f342e;
    color: #f8f4ed;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.brand--footer .brand__logo {
    background: #fff;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.footer-links {
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 720px) {
    .hero,
    .section {
        padding: 6rem 0;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        display: none;
    }

    .site-nav {
        display: block;
        grid-column: auto;
    }

    .site-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .site-nav a {
        padding: 0.75rem 0.95rem;
    }

    .header-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }

    .header-actions .button {
        width: 100%;
        white-space: nowrap;
    }

    .hero__grid,
    .section-grid,
    .contact-grid,
    .reviews-panel {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }

    .location-grid {
        grid-template-columns: 0.9fr 0.95fr 0.95fr;
        gap: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

@media (min-width: 980px) {
    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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