:root {
    --color-bg: #efe5d4;
    --color-bg-deep: #e7dac3;
    --color-surface: rgba(252, 248, 241, 0.84);
    --color-surface-strong: #f7efe2;
    --color-ink: #271f1a;
    --color-muted: #62574c;
    --color-accent: #7d3431;
    --color-accent-strong: #5f2422;
    --color-leaf: #2f4a33;
    --color-gold: #af8b4d;
    --color-border: rgba(39, 31, 26, 0.1);
    --shadow-soft: 0 25px 65px rgba(39, 31, 26, 0.12);
    --shadow-deep: 0 35px 80px rgba(39, 31, 26, 0.18);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
    --pattern-band: linear-gradient(90deg, rgba(47, 74, 51, 0.1) 0, rgba(47, 74, 51, 0.1) 18%, transparent 18%, transparent 24%, rgba(125, 52, 49, 0.08) 24%, rgba(125, 52, 49, 0.08) 40%, transparent 40%, transparent 46%, rgba(175, 139, 77, 0.12) 46%, rgba(175, 139, 77, 0.12) 62%, transparent 62%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top left, rgba(175, 139, 77, 0.18), transparent 30%),
        radial-gradient(circle at right 20%, rgba(47, 74, 51, 0.12), transparent 26%),
        linear-gradient(180deg, #f7efe2 0%, var(--color-bg) 48%, var(--color-bg-deep) 100%);
    line-height: 1.65;
}

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

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

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

.site-main {
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(244, 235, 220, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(39, 31, 26, 0.08);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 0.95rem 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    max-width: min(420px, 100%);
}

.site-brand__logo,
.site-footer__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-brand__logo {
    max-height: 88px;
}

.site-nav__list,
.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list {
    justify-content: center;
}

.site-nav__list a,
.footer-links a {
    color: var(--color-muted);
    font-size: 0.98rem;
}

.site-nav__list a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--color-accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(125, 52, 49, 0.18);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
    background: var(--color-accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(125, 52, 49, 0.24);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-accent);
    border-color: rgba(125, 52, 49, 0.22);
    box-shadow: none;
}

.button--ghost:hover {
    background: rgba(125, 52, 49, 0.08);
}

.hero,
.section,
.page-hero {
    position: relative;
    padding: 5.5rem 0;
}

.hero h1,
.section h2,
.page-hero h1,
.album-card h3,
.card h3,
.faq-item h3,
.hero__visual-overlay h2 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.section h2,
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.section-eyebrow,
.hero__card-eyebrow,
.site-footer__title {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-leaf);
}

.hero__lead,
.section-heading p,
.rich-text p,
.page-content p,
.temple-copy {
    font-size: 1.12rem;
    color: var(--color-muted);
}

.hero__actions,
.cta-panel__actions,
.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.hero--editorial {
    padding-top: 6.2rem;
}

.hero__texture {
    position: absolute;
    pointer-events: none;
    inset: auto;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.75;
}

.hero__texture--one {
    top: 3rem;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(175, 139, 77, 0.42), transparent 62%);
}

.hero__texture--two {
    right: -6rem;
    bottom: 1rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(47, 74, 51, 0.28), transparent 64%);
}

.hero__editorial-grid,
.split,
.site-footer__grid,
.cta-panel,
.temple-grid,
.album-hero__grid {
    display: grid;
    gap: 2rem;
}

.hero__editorial-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.trust-pill {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(39, 31, 26, 0.08);
    color: var(--color-leaf);
    font-size: 0.94rem;
}

.hero__visual {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: end;
}

.hero__visual-card,
.card,
.service-card,
.journey-card,
.cta-panel,
.album-card,
.page-proof,
.authority-panel,
.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.hero__visual-card {
    overflow: hidden;
}

.hero__visual-card--main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 35rem;
    position: relative;
    box-shadow: var(--shadow-deep);
}

.hero__visual-card--main img,
.hero__visual-card--accent img,
.temple-gallery__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__visual-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(39, 31, 26, 0.82));
}

.hero__visual-overlay .hero__card-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.hero__visual-card--quote,
.hero__visual-card--accent {
    min-height: 16.5rem;
}

.hero__visual-card--quote {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__card-text {
    margin: 0;
    color: var(--color-muted);
    font-size: 1.02rem;
}

.hero__visual-card--accent {
    overflow: hidden;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

.journey-grid,
.cards,
.service-grid,
.faq-preview__grid,
.album-grid {
    display: grid;
    gap: 1.5rem;
}

.journey-grid,
.cards--three,
.faq-preview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.journey-card,
.card,
.service-card,
.faq-item,
.page-proof {
    padding: 1.65rem;
}

.journey-card {
    position: relative;
}

.card p,
.service-card p,
.journey-card p,
.faq-item p,
.page-proof li {
    color: var(--color-muted);
}

.section--accent {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
        rgba(239, 225, 202, 0.74);
}

.section--textured::before,
.page-hero--rich::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image: var(--pattern-band);
    background-size: 280px 100%;
    pointer-events: none;
}

.section--dark {
    background:
        radial-gradient(circle at top right, rgba(175, 139, 77, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(33, 31, 29, 0.98), rgba(53, 28, 26, 0.98));
    color: #f6eee5;
}

.section--dark .section-eyebrow,
.section--dark .text-link--light,
.section--dark .temple-copy {
    color: rgba(246, 238, 229, 0.76);
}

.section-heading--light h2,
.section-heading--light p,
.journey-card--dark h3,
.journey-card--dark p {
    color: #f6eee5;
}

.split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.split--rich {
    align-items: center;
}

.authority-panel {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.authority-panel__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding-top: 1rem;
    border-top: 1px solid rgba(39, 31, 26, 0.08);
}

.authority-panel__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.authority-panel__number {
    color: var(--color-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
}

.authority-panel__item p {
    margin: 0;
    color: var(--color-muted);
}

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

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-leaf), var(--color-gold), var(--color-accent));
}

.service-card__list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.service-card__list li + li {
    margin-top: 0.75rem;
}

.service-card--page .button {
    margin-top: 1rem;
}

.cta-panel {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 2rem;
}

.cta-panel--final {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18)),
        rgba(251, 247, 240, 0.9);
}

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

.temple-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
}

.temple-gallery {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 1rem;
}

.temple-gallery__card,
.temple-gallery__quote {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.temple-gallery__card {
    min-height: 19rem;
}

.temple-gallery__card--small {
    min-height: 13rem;
}

.temple-gallery__quote {
    grid-column: 1 / 3;
    padding: 1.4rem;
    color: rgba(246, 238, 229, 0.9);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    line-height: 1.15;
}

.album-heading {
    max-width: 860px;
}

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

.album-card {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.album-card:hover,
.service-card:hover,
.journey-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}

.album-card__media {
    background: linear-gradient(180deg, rgba(125, 52, 49, 0.08), rgba(175, 139, 77, 0.08));
}

.album-card__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.album-card__body {
    padding: 1.4rem;
}

.album-card__body blockquote {
    margin: 1rem 0 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(125, 52, 49, 0.24);
    color: var(--color-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

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

.journey-grid--steps {
    align-items: stretch;
}

.journey-card--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.journey-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: rgba(175, 139, 77, 0.16);
    color: var(--color-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.section--textured-light::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: var(--pattern-band);
    background-size: 240px 100%;
    pointer-events: none;
}

.faq-item h3 {
    font-size: 2rem;
}

.page-hero {
    padding-top: 5rem;
}

.page-content,
.post-list {
    max-width: 860px;
}

.page-proof {
    align-self: stretch;
}

.card--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.card--dark p,
.card--dark h3 {
    color: #f6eee5;
}

.card--contact .button {
    margin-top: 1rem;
}

.album-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.album-hero__card {
    padding: 2rem;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(39, 31, 26, 0.98), rgba(28, 24, 22, 0.98));
    color: rgba(246, 238, 229, 0.8);
}

.site-footer__grid {
    grid-template-columns: 1.15fr 0.9fr 1fr;
    align-items: start;
}

.site-footer__logo {
    max-width: 290px;
}

.site-footer__text,
.site-footer__bottom p {
    color: rgba(246, 238, 229, 0.72);
}

.site-footer__title,
.site-footer .footer-links a {
    color: rgba(246, 238, 229, 0.84);
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
    .hero__content,
    .hero__visual,
    .journey-card,
    .service-card,
    .album-card,
    .faq-item {
        animation: rise-in 0.75s ease both;
    }

    .journey-card:nth-child(2),
    .service-card:nth-child(2),
    .album-card:nth-child(2),
    .faq-item:nth-child(2) {
        animation-delay: 0.08s;
    }

    .journey-card:nth-child(3),
    .service-card:nth-child(3),
    .album-card:nth-child(3),
    .faq-item:nth-child(3) {
        animation-delay: 0.16s;
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .site-header__inner,
    .hero__editorial-grid,
    .split,
    .temple-grid,
    .cta-panel,
    .site-footer__grid,
    .album-hero__grid,
    .service-grid,
    .journey-grid,
    .cards--three,
    .faq-preview__grid {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        justify-items: start;
    }

    .site-nav__list {
        justify-content: flex-start;
    }

    .hero__visual {
        grid-template-columns: 1fr 1fr;
    }

    .hero__visual-card--main {
        min-height: 28rem;
    }
}

@media (max-width: 760px) {
    .hero,
    .section,
    .page-hero {
        padding: 4rem 0;
    }

    .site-header__cta {
        width: 100%;
    }

    .hero__visual {
        grid-template-columns: 1fr;
    }

    .hero__visual-card--main,
    .hero__visual-card--quote,
    .hero__visual-card--accent {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .album-grid,
    .cards--two,
    .faq-preview__grid--stacked {
        grid-template-columns: 1fr;
    }

    .button,
    .button--ghost {
        width: 100%;
    }

    .trust-pill {
        width: 100%;
        text-align: center;
    }

    .site-footer {
        padding-bottom: 5.5rem;
    }
}
