:root {
    --sh-bg: #f5ede4;
    --sh-bg-soft: #fbf7f1;
    --sh-panel: rgba(255, 250, 244, 0.82);
    --sh-panel-strong: #efe1d1;
    --sh-text: #24150f;
    --sh-muted: #72584d;
    --sh-line: rgba(36, 21, 15, 0.12);
    --sh-accent: #9c5c3d;
    --sh-accent-dark: #64311d;
    --sh-shadow: 0 24px 60px rgba(65, 38, 23, 0.12);
    --sh-radius-lg: 32px;
    --sh-radius-md: 22px;
    --sh-radius-sm: 14px;
    --sh-container: min(1180px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--sh-text);
    background:
        radial-gradient(circle at top left, rgba(186, 128, 95, 0.18), transparent 32%),
        linear-gradient(180deg, #f9f4ed 0%, #f5ede4 52%, #f1e5d8 100%);
}

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

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

.container {
    width: var(--sh-container);
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.announcement-bar {
    border-bottom: 1px solid var(--sh-line);
    backdrop-filter: blur(12px);
    background: rgba(255, 249, 242, 0.72);
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sh-muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(245, 237, 228, 0.75);
    border-bottom: 1px solid rgba(36, 21, 15, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.site-brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sh-accent) 0%, var(--sh-accent-dark) 100%);
    color: #fff8f1;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-brand-copy strong,
.site-brand-copy em {
    font-style: normal;
}

.site-brand-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}

.site-brand-copy em {
    color: var(--sh-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-navigation {
    justify-self: center;
}

.primary-menu,
.menu-fallback,
.footer-menu {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a,
.menu-fallback a,
.footer-menu a,
.header-actions a {
    color: var(--sh-text);
    font-size: 0.95rem;
}

.header-actions a {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--sh-line);
    background: rgba(255, 255, 255, 0.45);
}

.primary-menu a,
.menu-fallback a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 0;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header.menu-style-minimal .primary-menu a::after,
.site-header.menu-style-minimal .menu-fallback a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.site-header.menu-style-minimal .primary-menu a:hover::after,
.site-header.menu-style-minimal .primary-menu .current-menu-item > a::after,
.site-header.menu-style-minimal .menu-fallback a:hover::after {
    transform: scaleX(1);
}

.site-header.menu-style-pill .primary-menu a,
.site-header.menu-style-pill .menu-fallback a {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid transparent;
}

.site-header.menu-style-pill .primary-menu a:hover,
.site-header.menu-style-pill .primary-menu .current-menu-item > a,
.site-header.menu-style-pill .menu-fallback a:hover {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(36, 21, 15, 0.09);
}

.site-header.menu-style-framed .site-navigation {
    padding: 10px 18px;
    border: 1px solid rgba(100, 49, 29, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(239, 225, 209, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-header.menu-style-framed .primary-menu,
.site-header.menu-style-framed .menu-fallback {
    gap: 12px;
}

.site-header.menu-style-framed .primary-menu a,
.site-header.menu-style-framed .menu-fallback a {
    padding: 8px 12px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.site-header.menu-style-framed .primary-menu a:hover,
.site-header.menu-style-framed .primary-menu .current-menu-item > a,
.site-header.menu-style-framed .menu-fallback a:hover {
    background: rgba(100, 49, 29, 0.1);
    color: var(--sh-accent-dark);
}

.site-header.menu-style-amyra .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
}

.site-header.menu-style-amyra .site-navigation {
    justify-self: stretch;
}

.site-header.menu-style-amyra .amyra-menu {
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-header.menu-style-amyra .amyra-menu > li {
    position: relative;
}

.site-header.menu-style-amyra .primary-menu a {
    min-height: 34px;
    padding: 4px 0;
    font-size: 0.9rem;
}

.site-header.menu-style-amyra .primary-menu > li > a {
    letter-spacing: 0.01em;
}

.site-header.menu-style-amyra .amyra-mega-item > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.amyra-mega-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 30;
    width: min(860px, calc(100vw - 48px));
    padding: 24px 28px;
    border: 1px solid rgba(100, 49, 29, 0.12);
    border-radius: 26px;
    background: rgba(255, 250, 244, 0.97);
    box-shadow: 0 28px 80px rgba(42, 23, 15, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-header.menu-style-amyra .amyra-mega-item:hover .amyra-mega-panel,
.site-header.menu-style-amyra .amyra-mega-item:focus-within .amyra-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.amyra-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.amyra-mega-title {
    margin: 0 0 14px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sh-muted);
}

.amyra-submenu {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.amyra-submenu a {
    padding: 0;
    min-height: auto;
    color: var(--sh-text);
}

.amyra-submenu a:hover {
    color: var(--sh-accent-dark);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--sh-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--sh-text);
    margin: 4px auto;
}

.site-main > section {
    padding: 44px 0;
}

.hero-section {
    padding-top: 56px;
}

.hero-grid,
.banner-grid,
.story-grid,
.footer-grid {
    display: grid;
    gap: 28px;
}

.hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
}

.hero-copy,
.story-panel,
.story-quote,
.banner-copy,
.banner-panels > div,
.collection-card,
.product-card,
.prose-block article,
.archive-item {
    background: var(--sh-panel);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--sh-shadow);
    backdrop-filter: blur(14px);
}

.hero-copy,
.banner-copy,
.story-panel,
.story-quote,
.prose-block article {
    padding: 34px;
    border-radius: var(--sh-radius-lg);
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--sh-muted);
}

h1,
h2,
h3,
blockquote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.98;
    font-weight: 600;
}

h1 {
    font-size: clamp(3.3rem, 6vw, 6rem);
    max-width: 10ch;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 3.75rem);
    max-width: 14ch;
}

h3 {
    font-size: 1.8rem;
}

p,
li,
input,
button {
    line-height: 1.7;
}

.hero-copy > p:not(.eyebrow),
.banner-copy p,
.story-panel p,
.story-quote p,
.section-heading p:not(.eyebrow),
.collection-card p,
.product-body p,
.entry-content,
.archive-item p,
.site-footer p {
    color: var(--sh-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.text-link:hover,
.header-actions a:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--sh-accent) 0%, var(--sh-accent-dark) 100%);
    color: #fff7f0;
}

.button-secondary {
    border: 1px solid var(--sh-line);
    background: rgba(255, 255, 255, 0.52);
}

.hero-points {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-points li {
    padding: 14px 16px;
    border-radius: var(--sh-radius-sm);
    border: 1px solid rgba(36, 21, 15, 0.09);
    background: rgba(255, 255, 255, 0.3);
}

.hero-art {
    display: grid;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 22px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--sh-radius-lg);
    min-height: 260px;
    padding: 28px;
    color: #fff8f1;
    box-shadow: var(--sh-shadow);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(32, 18, 13, 0.08), rgba(32, 18, 13, 0.6)),
        radial-gradient(circle at 20% 20%, rgba(255, 221, 184, 0.4), transparent 24%),
        linear-gradient(135deg, #a76a4c 0%, #6e3f2a 58%, #26130d 100%);
}

.hero-card > * {
    position: relative;
    z-index: 1;
    display: block;
}

.hero-card span {
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-card strong {
    max-width: 12ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.hero-card-small::before {
    background:
        linear-gradient(180deg, rgba(32, 18, 13, 0.08), rgba(32, 18, 13, 0.56)),
        radial-gradient(circle at 75% 15%, rgba(255, 244, 217, 0.24), transparent 18%),
        linear-gradient(135deg, #d3a56d 0%, #8f593a 56%, #41261d 100%);
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
}

.section-heading.split {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
}

.text-link {
    color: var(--sh-accent-dark);
    font-weight: 700;
}

.collection-grid,
.product-grid {
    display: grid;
    gap: 20px;
}

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

.collection-card {
    padding: 28px;
    border-radius: var(--sh-radius-md);
    transition: transform 0.25s ease;
}

.collection-card:hover,
.product-card:hover {
    transform: translateY(-4px);
}

.collection-index {
    margin-bottom: 42px;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.25rem;
    color: rgba(100, 49, 29, 0.3);
}

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

.product-card {
    overflow: hidden;
    border-radius: var(--sh-radius-md);
}

.product-media {
    min-height: 300px;
    background-position: center;
    background-size: cover;
}

.product-body {
    padding: 22px;
}

.product-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(156, 92, 61, 0.12);
    color: var(--sh-accent-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-price {
    font-weight: 800;
    color: var(--sh-text);
}

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

.banner-panels {
    display: grid;
    gap: 22px;
}

.banner-panels > div {
    padding: 26px;
    border-radius: var(--sh-radius-md);
}

.banner-panels span {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.story-quote {
    display: grid;
    place-content: center;
}

blockquote {
    font-size: clamp(2rem, 3vw, 3.1rem);
    max-width: 10ch;
}

.default-content {
    min-height: 50vh;
}

.prose-block {
    max-width: 860px;
}

.prose-block article,
.archive-item {
    border-radius: var(--sh-radius-lg);
}

.archive-list {
    display: grid;
    gap: 16px;
}

.archive-item {
    padding: 22px 24px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 32px 0 18px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--sh-line);
    background: rgba(255, 255, 255, 0.78);
}

.newsletter-form button {
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: var(--sh-accent-dark);
    color: #fff7f0;
    font-weight: 700;
    cursor: pointer;
}

.footer-menu,
.footer-widget {
    margin-top: 16px;
}

.footer-menu {
    flex-direction: column;
    gap: 10px;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    margin-top: 26px;
    border-top: 1px solid var(--sh-line);
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-navigation {
        grid-column: 1 / -1;
        display: none;
        justify-self: stretch;
        width: 100%;
        padding-top: 12px;
    }

    .site-header.menu-style-framed .site-navigation {
        padding: 14px 16px;
        border-radius: 24px;
    }

    .site-header.menu-style-amyra .amyra-menu {
        align-items: flex-start;
    }

    .site-header.menu-style-amyra .amyra-mega-item > a::after {
        margin-left: 8px;
    }

    .site-header.menu-style-amyra .amyra-mega-panel {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 18px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .site-header.menu-style-amyra .amyra-mega-item:hover .amyra-mega-panel,
    .site-header.menu-style-amyra .amyra-mega-item:focus-within .amyra-mega-panel {
        display: block;
    }

    .site-header.menu-style-amyra .amyra-mega-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .primary-menu,
    .menu-fallback {
        flex-direction: column;
        gap: 14px;
    }

    .header-actions {
        display: none;
    }

    .hero-grid,
    .collection-grid,
    .product-grid,
    .banner-grid,
    .story-grid,
    .footer-grid,
    .section-heading.split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .announcement-inner,
    .newsletter-form,
    .footer-meta {
        flex-direction: column;
    }

    .hero-copy,
    .banner-copy,
    .story-panel,
    .story-quote,
    .prose-block article {
        padding: 24px;
    }

    h1 {
        font-size: 2.9rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .hero-card,
    .product-media {
        min-height: 220px;
    }
}
