body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 30%),
        radial-gradient(circle at 82% 12%, rgba(147, 99, 59, 0.1), transparent 24%),
        radial-gradient(circle at 14% 92%, rgba(91, 58, 34, 0.06), transparent 18%);
    pointer-events: none;
    opacity: 0.9;
    z-index: -1;
}

.site-header {
    position: relative;
    top: auto;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(248, 243, 236, 0.94);
    box-shadow: 0 14px 32px rgba(52, 35, 20, 0.08);
}

.site-header__topbar {
    border-bottom: 1px solid rgba(76, 52, 31, 0.06);
    background: rgba(40, 28, 20, 0.96);
    color: rgba(250, 242, 232, 0.82);
}

.site-header__topbar-inner,
.site-header__contact-items,
.hero-grid,
.pill-list,
.process-grid,
.pillars-grid,
.contact-strip,
.contact-strip__actions {
    display: flex;
}

.site-header__topbar-inner {
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
}

.site-header__service-area {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header__contact-items {
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.site-header__meta-link {
    color: #fff1df;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid rgba(255, 241, 223, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.language-switcher__link {
    min-width: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 244, 231, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.language-switcher__link.is-active {
    background: rgba(255, 244, 231, 0.22);
    color: #ffffff;
}

.language-switcher--nav {
    display: none;
}

.site-header__meta-link:hover,
.site-header__meta-link:focus-visible {
    color: #ffffff;
}

.main-nav,
.menu {
    flex-wrap: wrap;
}

.main-nav {
    justify-content: flex-end;
}

.menu {
    gap: 20px;
    justify-content: flex-end;
}

.site-main {
    padding-top: 28px;
}

.hero-panel--premium {
    background:
        radial-gradient(circle at top right, rgba(255, 245, 232, 0.8), transparent 34%),
        linear-gradient(180deg, rgba(255, 251, 246, 0.88), rgba(247, 239, 228, 0.92));
}

.hero-panel--premium::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 60, 33, 0.14), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    align-items: stretch;
    gap: 28px;
}

.home-hero--editorial {
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(243, 233, 220, 0.9));
}

.home-hero--editorial::before {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(219, 192, 161, 0.28), transparent 74%);
}

.home-hero__grid,
.editorial-intro,
.proof-strip,
.advantage-grid,
.material-story__points {
    display: grid;
    gap: 24px;
}

.home-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    padding: 44px;
}

.home-hero__copy,
.home-hero__visual {
    display: grid;
    gap: 24px;
}

.home-hero__copy {
    align-content: center;
    padding-right: 18px;
}

.home-hero__copy h1 {
    max-width: 11ch;
    margin-bottom: 0;
}

.hero-proof-list {
    display: grid;
    gap: 12px;
    max-width: 58ch;
    padding: 0;
    margin: 4px 0 0;
    list-style: none;
}

.hero-proof-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
}

.hero-proof-list li::before {
    content: '';
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 0 0 5px rgba(147, 99, 59, 0.1);
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    border-radius: 0 0 26px 26px;
    background: #d9c1a5;
}

.hero-media--logo {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(39, 28, 21, 0.98), rgba(96, 64, 39, 0.94));
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: auto 24px 24px auto;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(255, 251, 246, 0.46);
    border-radius: 50%;
}

.hero-media__image,
.immersive-figure__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media__logo {
    width: min(100%, 320px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}

.hero-note {
    max-width: 340px;
    margin: -84px 0 0 auto;
    padding: 26px 28px;
    border: 1px solid rgba(76, 52, 31, 0.08);
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.94);
    box-shadow: 0 16px 38px rgba(52, 35, 20, 0.1);
    position: relative;
    z-index: 1;
}

.hero-note h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    margin-bottom: 10px;
}

.button--hero {
    min-height: 62px;
    padding: 0 34px;
    font-size: 0.98rem;
}

.proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(76, 52, 31, 0.08);
    background: rgba(255, 251, 246, 0.68);
}

.proof-strip__item {
    display: grid;
    gap: 10px;
    padding: 26px 32px;
}

.proof-strip__item + .proof-strip__item {
    border-left: 1px solid rgba(76, 52, 31, 0.08);
}

.proof-strip__label {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.proof-strip__item strong {
    max-width: 24ch;
    font-size: 1rem;
    line-height: 1.45;
}

.editorial-section {
    gap: 30px;
}

.home-story-image {
    overflow: hidden;
    margin-top: 8px;
    min-height: 520px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(220, 195, 165, 0.3), rgba(255, 250, 243, 0.92));
    box-shadow: var(--shadow-lg);
}

.home-story-image__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
    margin-bottom: 24px;
}

.editorial-intro p:last-child {
    color: var(--text-soft);
}

.advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.advantage-card {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 100%;
    padding: 24px 0 0;
    border-top: 1px solid rgba(76, 52, 31, 0.1);
}

.advantage-card__index {
    color: rgba(147, 99, 59, 0.78);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.advantage-card h3 {
    font-size: clamp(1.8rem, 2.5vw, 2.25rem);
    margin: 0;
}

.advantage-card p {
    color: var(--text-soft);
}

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

.material-story {
    display: grid;
    gap: 18px;
}

.material-story__points {
    gap: 18px;
    margin-top: 8px;
}

.material-story__points article {
    padding-top: 18px;
    border-top: 1px solid rgba(76, 52, 31, 0.09);
}

.material-story__points strong {
    display: block;
    margin-bottom: 6px;
}

.immersive-figure {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(220, 195, 165, 0.3), rgba(255, 250, 243, 0.92));
    box-shadow: var(--shadow-lg);
}

.immersive-figure::after {
    content: '';
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(255, 251, 246, 0.42);
    border-radius: 22px;
    pointer-events: none;
}

.immersive-figure__caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 26ch;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(31, 23, 18, 0.76);
    color: rgba(255, 248, 239, 0.92);
    font-size: 0.92rem;
}

.hero-copy,
.hero-aside,
.contact-strip > div {
    display: grid;
    gap: 20px;
}

.hero-copy {
    flex: 1.4;
}

.hero-aside {
    flex: 0.8;
    align-content: start;
}

.hero-aside-card,
.pillar-card,
.process-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.82);
    border: 1px solid rgba(76, 52, 31, 0.09);
    padding: 28px;
}

.hero-aside-card::before,
.pillar-card::before,
.process-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(95, 60, 33, 0.94), rgba(220, 195, 165, 0.42));
}

.brand-card {
    background: linear-gradient(180deg, rgba(41, 27, 19, 0.98), rgba(76, 49, 29, 0.94));
    color: rgba(255, 246, 235, 0.9);
    display: grid;
    place-items: center;
    min-height: 360px;
}

.brand-card .eyebrow,
.brand-card p {
    color: inherit;
}

.brand-card__logo {
    width: min(100%, 260px);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 22px;
    border: 1px solid rgba(76, 52, 31, 0.08);
    background: rgba(255, 252, 247, 0.72);
}

.comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(76, 52, 31, 0.07);
    text-align: left;
}

.comparison-table th {
    font-size: 0.86rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: rgba(220, 195, 165, 0.14);
}

.comparison-table td {
    color: var(--text-soft);
}

.comparison-table__summary {
    margin-top: 18px;
    color: var(--text-main);
    font-weight: 700;
}

.gallery-card {
    overflow: hidden;
    min-height: 300px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(220, 195, 165, 0.24), rgba(255, 250, 243, 0.92));
    box-shadow: var(--shadow-md);
}

.gallery-card--feature {
    grid-row: span 2;
    min-height: 620px;
}

.gallery-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-list {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pill-list li {
    border: 1px solid rgba(88, 59, 35, 0.12);
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

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

.process-grid {
    gap: 18px;
    flex-wrap: wrap;
}

.process-grid > * {
    flex: 1 1 240px;
}

.process-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(95, 60, 33, 0.96), rgba(143, 99, 59, 0.82));
    color: #fff;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.process-card h3,
.pillar-card h2,
.hero-aside-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 0.98;
    margin: 0 0 12px;
}

.showcase-card,
.product-card,
.gallery-card,
.hero-aside-card,
.process-card,
.pillar-card,
.detail-card,
.contact-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.showcase-card:hover,
.product-card:hover,
.gallery-card:hover,
.hero-aside-card:hover,
.process-card:hover,
.pillar-card:hover,
.detail-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(76, 52, 31, 0.16);
    box-shadow: 0 22px 46px rgba(58, 34, 18, 0.12);
}

.product-card__media--placeholder {
    overflow: hidden;
}

.product-card__media--placeholder img,
.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-panel .detail-stack--compact {
    margin-top: 26px;
}

.quote-form__note {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.contact-strip {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-strip__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.contact-strip .button--secondary {
    border-color: rgba(255, 244, 231, 0.32);
    color: #fff8ef;
}

.not-found-panel {
    text-align: center;
}

.not-found-panel .lead {
    margin-inline: auto;
}

.footer-grid {
    gap: 28px;
}

.footer-panel {
    padding: 6px 0;
}

.footer-panel .button {
    width: fit-content;
}

.section-grid--feature-links {
    align-items: stretch;
}

.feature-panel {
    display: grid;
    gap: 18px;
}

.feature-panel--dark {
    background: linear-gradient(150deg, rgba(39, 28, 21, 0.98), rgba(96, 64, 39, 0.94));
    color: rgba(255, 246, 235, 0.92);
}

.feature-panel--dark .eyebrow,
.feature-panel--dark p,
.feature-panel--dark h2 {
    color: inherit;
}

.text-link--light {
    color: #fff4e7;
}

@keyframes teaks-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.hero-panel,
.page-hero,
.showcase-card,
.product-card,
.contact-card,
.pillar-card,
.process-card {
    animation: teaks-fade-up 0.7s ease both;
}

.showcase-card {
    animation-delay: 0.08s;
}

.product-card {
    animation-delay: 0.12s;
}

@media (max-width: 1080px) {
    .hero-grid,
    .contact-strip {
        flex-direction: column;
    }

    .home-hero__grid,
    .section-grid--editorial,
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .hero-note {
        max-width: none;
        margin: 0;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip__item + .proof-strip__item {
        border-left: 0;
        border-top: 1px solid rgba(76, 52, 31, 0.08);
    }
}

@media (max-width: 900px) {
    .site-header__topbar {
        display: none;
    }

    .language-switcher--nav {
        display: inline-flex;
        margin-top: 8px;
        align-self: flex-start;
        border-color: rgba(88, 59, 35, 0.12);
        background: rgba(88, 59, 35, 0.04);
    }

    .language-switcher--nav .language-switcher__link {
        color: var(--text-main);
    }

    .language-switcher--nav .language-switcher__link.is-active {
        background: rgba(95, 60, 33, 0.12);
        color: var(--accent-deep);
    }

    .home-hero__grid {
        padding: 30px;
    }

    .home-hero__copy {
        padding-right: 0;
    }

    .editorial-intro,
    .advantage-grid,
    .section-grid--stretch {
        grid-template-columns: 1fr;
    }

    .projects-gallery {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gallery-card--feature {
        grid-row: auto;
        min-height: 360px;
    }

    .main-nav {
        top: calc(100% + 14px);
    }
}

@media (max-width: 640px) {
    .button--hero {
        width: 100%;
    }

    .home-hero__grid {
        padding: 24px;
    }

    .hero-media {
        min-height: 360px;
        border-radius: 0 0 20px 20px;
    }

    .home-story-image {
        min-height: 320px;
        border-radius: 20px;
    }

    .hero-note {
        padding: 22px;
        border-radius: 20px;
    }

    .proof-strip__item {
        padding: 22px 24px;
    }

    .immersive-figure {
        min-height: 400px;
        border-radius: 22px;
    }

    .immersive-figure::after {
        inset: 18px;
        border-radius: 18px;
    }

    .immersive-figure__caption {
        right: 18px;
        bottom: 18px;
    }

    .hero-aside-card,
    .pillar-card,
    .process-card {
        padding: 24px;
    }

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

    .contact-strip__actions {
        width: 100%;
        justify-content: stretch;
    }

    .contact-strip__actions .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.home-hero--luxury {
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(244, 236, 226, 0.9));
}

.home-hero--luxury::before {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(219, 192, 161, 0.18), transparent 74%);
}

.home-hero--luxury .home-hero__grid {
    grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.62fr);
    align-items: start;
    gap: 20px;
    padding: 34px;
}

.home-hero--luxury .home-hero__copy {
    align-content: start;
    gap: 16px;
    padding-right: 0;
}

.home-hero__copy-card {
    display: grid;
    align-self: start;
    gap: 16px;
    max-width: none;
    padding: 28px 32px;
    border: 1px solid rgba(76, 52, 31, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.62);
    box-shadow: 0 14px 30px rgba(52, 35, 20, 0.05);
}

.home-hero--luxury .home-hero__copy h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(3.5rem, 5vw, 5.2rem);
    letter-spacing: -0.03em;
}

.home-hero__copy-card .lead {
    max-width: 44ch;
}

.home-hero__copy-card .hero-actions {
    margin-top: 6px;
}

.home-hero__aside {
    display: grid;
    align-content: start;
    gap: 14px;
}

.home-brand-plaque,
.home-launch-card,
.feature-panel--stone {
    background: rgba(255, 252, 247, 0.72);
    border: 1px solid rgba(76, 52, 31, 0.08);
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(52, 35, 20, 0.06);
}

.home-brand-plaque {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 22px 18px;
}

.home-brand-plaque__logo {
    width: 248px;
    height: 248px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
}

.home-brand-plaque__label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.home-brand-plaque p {
    max-width: 26ch;
    margin: 0 auto;
    color: var(--text-soft);
}

.home-launch-card {
    padding: 24px;
}

.home-launch-card h2 {
    font-size: clamp(1.65rem, 2.3vw, 2.2rem);
    margin-bottom: 10px;
}

.editorial-section--luxury {
    gap: 28px;
}

.editorial-intro--luxury {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 18px;
    margin-bottom: 10px;
}

.advantage-grid--luxury {
    gap: 18px 24px;
}

.advantage-grid--luxury .advantage-card {
    padding-top: 20px;
}

.home-story-panel {
    display: grid;
    justify-items: center;
    gap: 18px;
    max-width: 940px;
    margin: 0 auto;
    padding-top: 2px;
}

.home-story-panel__copy {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 760px;
    text-align: center;
}

.home-story-panel__copy p:last-child {
    color: var(--text-soft);
}

.home-story-image {
    overflow: hidden;
    min-height: 400px;
    margin: 0;
    width: min(100%, 760px);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(220, 195, 165, 0.22), rgba(255, 250, 243, 0.92));
    box-shadow: 0 18px 38px rgba(52, 35, 20, 0.08);
}

.home-story-image__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-comparison-panel {
    background: rgba(255, 252, 247, 0.7);
}

.home-links-grid {
    gap: 24px;
}

.feature-panel--stone {
    padding: 34px;
}

.feature-panel--stone h2,
.feature-panel--stone p {
    color: inherit;
}

.callout-panel--refined {
    background: linear-gradient(180deg, rgba(43, 31, 23, 0.96), rgba(88, 61, 39, 0.94));
    box-shadow: 0 22px 46px rgba(35, 24, 16, 0.12);
}

.callout-panel--refined .button--secondary {
    background: rgba(255, 248, 239, 0.08);
    color: #fff8ef;
    border-color: rgba(255, 248, 239, 0.18);
}

.button--hero {
    min-height: 60px;
    padding: 0 32px;
}

@media (max-width: 1080px) {
    .home-hero--luxury .home-hero__grid,
    .editorial-intro--luxury {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .home-hero--luxury .home-hero__grid {
        padding: 28px;
        gap: 20px;
    }

    .home-brand-plaque__logo {
        width: 204px;
        height: 204px;
    }
}

@media (max-width: 640px) {
    .home-hero--luxury .home-hero__grid,
    .feature-panel--stone {
        padding: 24px;
    }

    .home-hero__copy-card {
        padding: 24px 22px;
    }

    .home-brand-plaque {
        padding: 22px 18px;
    }

    .home-story-image {
        min-height: 280px;
        border-radius: 20px;
    }
}
