/* ==========================================================
   National Emporium V2
   Premium modern / heritage visual layer
   Flexbox only. Typography never below 16px.
   ========================================================== */

:root {
    --font-main: 'Nunito', sans-serif;
    --gold: #c6a35a;
    --gold-light: #ead8a9;
    --gold-dark: #8f6f32;
    --black: #070707;
    --charcoal: #12110f;
    --ivory: #f7f3ea;
    --cream: #eee6d8;
    --white: #ffffff;
    --text: #211f1b;
    --muted: #6f6a60;
    --border: rgba(33, 31, 27, .14);
    --border-dark: rgba(255, 255, 255, .16);
    --container: 1380px;
    --section-space: 126px;
    --radius: 0px;
    --transition: 360ms cubic-bezier(.22,.61,.36,1);
    --shadow-soft: 0 28px 80px rgba(17, 13, 7, .10);
    --shadow-deep: 0 34px 90px rgba(0, 0, 0, .20);
}

body {
    background: var(--white);
    color: var(--text);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

.container {
    width: calc(100% - 64px);
    max-width: var(--container);
}

.section_block {
    position: relative;
    padding: var(--section-space) 0;
}

.section_ivory {
    background:
        radial-gradient(circle at 8% 12%, rgba(198,163,90,.10), transparent 26%),
        var(--ivory);
}

.eyebrow {
    position: relative;
    margin-bottom: 22px;
    color: var(--gold-dark);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.main_title {
    max-width: 820px;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.banner_title {
    max-width: 980px;
    font-size: 76px;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -2.6px;
}

.banner_text,
.hero_text {
    font-size: 19px;
    line-height: 1.8;
}

.section_heading {
    margin-bottom: 64px;
}

.split_heading {
    gap: 90px;
}

.split_heading > p {
    font-size: 18px;
    line-height: 1.85;
}

.section_number {
    display: block;
    margin-bottom: 34px;
    color: rgba(33,31,27,.45);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.global_cta {
    position: relative;
    min-height: 58px;
    gap: 18px;
    padding: 16px 30px;
    overflow: hidden;
    border: 1px solid var(--black);
    background: var(--black);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.global_cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-103%);
    transition: transform var(--transition);
    z-index: 0;
}

.global_cta > *,
.global_cta i {
    position: relative;
    z-index: 1;
}

.global_cta i {
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    transition: transform var(--transition);
}

.global_cta:hover {
    border-color: var(--gold);
    background: var(--black);
    color: var(--black);
    transform: translateY(-2px);
}

.global_cta:hover::before {
    transform: translateX(0);
}

.global_cta:hover i {
    transform: translateX(4px);
}

.global_cta_light {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.global_cta_light::before {
    background: var(--white);
}

.global_cta_outline {
    background: transparent;
    color: var(--black);
}

.global_cta_outline::before {
    background: var(--black);
}

.global_cta_outline:hover {
    color: var(--white);
}

.text_link {
    position: relative;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 0;
    font-size: 16px;
    letter-spacing: .5px;
}

.text_link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right center;
    transition: transform var(--transition);
}

.text_link:hover::after {
    transform: scaleX(.55);
}

/* ========================= HEADER ========================= */
.announcement_bar {
    position: relative;
    z-index: 1200;
    background: var(--black);
    border-bottom: 1px solid rgba(198,163,90,.24);
}

.announcement_inner {
    min-height: 44px;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    padding: 0;
}

.announcement_inner p {
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    letter-spacing: .35px;
}

.announcement_mark {
    width: 145px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.announcement_mark span {
    width: 48px;
    height: 1px;
    background: rgba(198,163,90,.62);
}

.announcement_mark i {
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.announcement_links {
    min-width: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.announcement_links span,
.announcement_links a {
    color: rgba(255,255,255,.68);
    font-size: 16px;
}

.announcement_links a:hover {
    color: var(--gold-light);
}

.site_header {
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 0;
    background: rgba(255,255,255,.97);
    box-shadow: 0 1px 0 rgba(33,31,27,.10);
    backdrop-filter: blur(18px);
}

.header_shell {
    position: relative;
}

.site_header.is_scrolled {
    box-shadow: 0 18px 54px rgba(20,16,10,.10);
}

.header_inner {
    position: relative;
    min-height: 96px;
    gap: 34px;
}

.site_brand {
    min-width: 280px;
    gap: 16px;
}

.brand_roundel {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.brand_roundel::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(198,163,90,.32);
    border-radius: 50%;
    transition: transform 700ms ease, border-color 700ms ease;
}

.site_brand:hover .brand_roundel::before {
    transform: rotate(35deg) scale(1.06);
    border-color: var(--gold);
}

.site_logo {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
}

.brand_copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand_copy strong {
    color: var(--black);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.25;
    text-transform: uppercase;
}

.brand_copy small {
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

.primary_navigation {
    position: static;
    flex: 1 1 auto;
}

.primary_menu {
    gap: 36px;
}

.primary_menu > li {
    position: relative;
}

.primary_menu > li > a {
    position: relative;
    padding: 36px 0;
    color: #2e2b26;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .25px;
}

.primary_menu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 27px;
    height: 1px;
    background: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--transition);
}

.primary_menu > li:hover > a::after,
.primary_menu > li:focus-within > a::after,
.primary_menu > li.current-menu-item > a::after,
.primary_menu > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.primary_menu > .menu-item-has-children > a {
    padding-right: 19px;
}

.primary_menu > .menu-item-has-children > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 47%;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-50%);
    transition: transform var(--transition);
}

.primary_menu > .menu-item-has-children:hover > a::before,
.primary_menu > .menu-item-has-children:focus-within > a::before {
    transform: rotate(225deg) translate(-2px,-2px);
}

.primary_menu .sub-menu {
    border: 1px solid rgba(198,163,90,.20);
    background: #fffefa;
    box-shadow: var(--shadow-deep);
}

.primary_menu > li:not(.mega-menu) > .sub-menu {
    min-width: 290px;
    left: 0;
    padding: 14px;
    transform: translateY(14px);
}

.primary_menu > li:not(.mega-menu):hover > .sub-menu,
.primary_menu > li:not(.mega-menu):focus-within > .sub-menu {
    transform: translateY(0);
}

.primary_menu .sub-menu a {
    position: relative;
    padding: 12px 14px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.primary_menu .sub-menu a:hover {
    background: var(--ivory);
    color: var(--gold-dark);
}

/* Full-width Shop mega menu */
.primary_menu > .mega-menu {
    position: static;
}

.primary_menu > .mega-menu > .sub-menu {
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 42px 38px 36px;
    border-top: 1px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

.primary_menu > .mega-menu > .sub-menu::before {
    content: 'THE NATIONAL EMPORIUM COLLECTIONS';
    width: 100%;
    display: block;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--gold-dark);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.primary_menu > .mega-menu:hover > .sub-menu,
.primary_menu > .mega-menu:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary_menu > .mega-menu > .sub-menu > li {
    width: 25%;
    padding: 0 26px 22px 0;
}

.primary_menu > .mega-menu > .sub-menu > li > a {
    display: inline-flex;
    margin-bottom: 11px;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(198,163,90,.44);
    color: var(--black);
    background: transparent;
    font-size: 18px;
    font-weight: 700;
}

.primary_menu > .mega-menu > .sub-menu > li > .sub-menu {
    position: static;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.primary_menu > .mega-menu > .sub-menu > li > .sub-menu a {
    padding: 6px 0;
    color: var(--muted);
    background: transparent;
    font-size: 16px;
    font-weight: 600;
}

.primary_menu > .mega-menu > .sub-menu > li > .sub-menu a::before {
    content: '—';
    display: inline-block;
    width: 20px;
    color: rgba(143,111,50,.42);
    transition: width var(--transition), color var(--transition);
}

.primary_menu > .mega-menu > .sub-menu > li > .sub-menu a:hover {
    color: var(--black);
}

.primary_menu > .mega-menu > .sub-menu > li > .sub-menu a:hover::before {
    width: 28px;
    color: var(--gold-dark);
}

.header_actions {
    min-width: 300px;
    justify-content: flex-end;
    gap: 12px;
}

.header_action {
    min-height: 48px;
    gap: 9px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}

.header_action svg {
    width: 22px;
    height: 22px;
}

.header_enquire {
    min-height: 50px;
    gap: 15px;
    padding: 0 20px;
    border: 1px solid var(--black);
    color: var(--black);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.header_enquire:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.header_enquire svg {
    width: 20px;
}

.mobile_nav_heading,
.mobile_nav_footer,
.mobile_submenu_toggle {
    display: none;
}

.nav_backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    background: rgba(8,8,8,.44);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

body.mega_open .nav_backdrop,
body.search_open .nav_backdrop,
body.menu_open .nav_backdrop {
    opacity: 1;
    visibility: visible;
}

.site_search_panel {
    position: fixed;
    z-index: 1200;
    top: 140px;
    left: 0;
    width: 100%;
    padding: 58px 0 64px;
    border-top: 1px solid var(--gold);
    background: #fffefa;
    box-shadow: var(--shadow-deep);
}

.search_panel_inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.search_panel_heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.search_panel_heading .main_title {
    font-size: 42px;
}

.search_close,
.mobile_nav_close {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--black);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.luxury_search_form {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.luxury_search_form input[type='search'] {
    min-height: 64px;
    flex: 1 1 auto;
    padding: 15px 22px;
    border: 1px solid rgba(33,31,27,.24);
    background: var(--white);
    color: var(--black);
    font-size: 18px;
    outline: none;
}

.luxury_search_form input[type='search']:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(198,163,90,.12);
}

.search_quick_links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
}

.search_quick_links span,
.search_quick_links a {
    font-size: 16px;
}

.search_quick_links span {
    color: var(--muted);
    font-weight: 700;
}

.search_quick_links a {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
}

/* ========================= HERO ========================= */
.home_hero {
    min-height: 820px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.home_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22)),
        radial-gradient(circle at 77% 44%, transparent 0, transparent 18%, rgba(0,0,0,.18) 66%);
}

.hero_inner {
    min-height: 820px;
}

.hero_content {
    max-width: 880px;
    padding: 110px 0 130px;
}

.hero_kicker {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero_kicker > span:first-child {
    width: 66px;
    height: 1px;
    background: var(--gold);
}

.hero_kicker .eyebrow {
    margin-bottom: 0;
}

.hero_content .banner_title {
    margin-top: 28px;
    text-wrap: balance;
}

.hero_content .hero_text {
    max-width: 620px;
    margin-top: 30px;
}

.hero_actions {
    margin-top: 42px;
}

.hero_meta {
    max-width: 760px;
    display: flex;
    align-items: stretch;
    margin-top: 74px;
    border-top: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.hero_meta > span {
    min-height: 74px;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px 18px 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    font-weight: 600;
}

.hero_meta > span + span {
    padding-left: 22px;
    border-left: 1px solid rgba(255,255,255,.20);
}

.hero_meta strong {
    color: var(--gold-light);
    font-size: 16px;
    letter-spacing: 1px;
}

.hero_seal {
    right: -52px;
    bottom: -72px;
    width: 430px;
    padding: 26px;
    opacity: .22;
}

.hero_seal img {
    position: relative;
    z-index: 1;
}

.hero_seal_ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(234,216,169,.52);
    border-radius: 50%;
    animation: neSealSpin 28s linear infinite;
}

.hero_seal_ring::before,
.hero_seal_ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -7px;
    width: 13px;
    height: 13px;
    border: 1px solid var(--gold-light);
    background: rgba(7,7,7,.5);
    transform: translateY(-50%) rotate(45deg);
}

.hero_seal_ring::after {
    left: auto;
    right: -7px;
}

@keyframes neSealSpin {
    to { transform: rotate(360deg); }
}

.hero_frame {
    position: absolute;
    inset: 26px;
    z-index: 2;
    pointer-events: none;
}

.hero_frame span {
    position: absolute;
    width: 54px;
    height: 54px;
    border-color: rgba(234,216,169,.55);
    border-style: solid;
}

.hero_frame span:nth-child(1) { top: 0; left: 0; border-width: 1px 0 0 1px; }
.hero_frame span:nth-child(2) { top: 0; right: 0; border-width: 1px 1px 0 0; }
.hero_frame span:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.hero_frame span:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 1px 1px; }

.hero_scroll {
    left: 35px;
    bottom: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
}

.hero_scroll span {
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,.48);
}

/* ========================= CATEGORY EDITORIAL ========================= */
.categories_section {
    overflow: hidden;
    background: #fffefa;
}

.categories_section::before {
    content: 'NE';
    position: absolute;
    top: 36px;
    right: -18px;
    color: rgba(198,163,90,.055);
    font-size: 220px;
    font-weight: 700;
    line-height: 1;
}

.category_cards {
    gap: 24px;
}

.category_card {
    min-height: 600px;
    width: calc(50% - 12px);
    border: 1px solid rgba(198,163,90,.16);
    box-shadow: 0 16px 50px rgba(15,12,8,.08);
}

.category_card:nth-child(4n + 1),
.category_card:nth-child(4n + 4) {
    width: calc(58% - 12px);
}

.category_card:nth-child(4n + 2),
.category_card:nth-child(4n + 3) {
    width: calc(42% - 12px);
}

.category_card:nth-child(4n + 2),
.category_card:nth-child(4n + 3) {
    min-height: 540px;
}

.category_card img {
    min-height: inherit;
    filter: saturate(.88) contrast(1.04);
    transition: transform 900ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
}

.category_card:hover img {
    transform: scale(1.055);
    filter: saturate(1) contrast(1.03);
}

.category_overlay {
    background: linear-gradient(180deg, rgba(5,5,5,.04) 12%, rgba(5,5,5,.20) 45%, rgba(5,5,5,.88) 100%);
}

.category_number {
    position: absolute;
    top: 28px;
    right: 30px;
    z-index: 2;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255,255,255,.54);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.category_content {
    padding: 38px;
}

.category_count {
    color: rgba(255,255,255,.66);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category_content strong {
    margin-bottom: 12px;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -.5px;
}

.category_children {
    display: block;
    max-width: 540px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.6;
}

/* ========================= STORY ========================= */
.story_section {
    overflow: hidden;
}

.story_inner {
    gap: 118px;
}

.story_visual {
    width: 50%;
    padding: 24px 0 0 24px;
}

.story_visual > img {
    position: relative;
    z-index: 1;
    height: 760px;
    box-shadow: var(--shadow-soft);
}

.story_image_frame {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 24px);
    height: calc(100% - 70px);
    border: 1px solid rgba(143,111,50,.42);
}

.story_caption {
    position: absolute;
    left: 24px;
    bottom: -42px;
    display: block;
    color: var(--muted);
    font-size: 16px;
    letter-spacing: .6px;
}

.story_monogram {
    z-index: 2;
    right: -54px;
    bottom: -28px;
    width: 174px;
    height: 174px;
    padding: 25px;
    border: 1px solid rgba(198,163,90,.42);
    box-shadow: 0 26px 58px rgba(0,0,0,.20);
}

.story_content .main_title {
    margin-bottom: 30px;
}

.rich_text {
    font-size: 18px;
    line-height: 1.9;
}

.story_content .global_cta {
    margin-top: 42px;
}

/* ========================= PRODUCTS ========================= */
.products_section {
    overflow: hidden;
}

.product_cards {
    gap: 46px 24px;
}

.product_cards .product_card {
    width: calc(25% - 18px);
}

.product_card {
    transition: transform var(--transition);
}

.product_card:hover {
    transform: translateY(-6px);
}

.product_image_wrap {
    height: 500px;
    border: 1px solid rgba(33,31,27,.08);
    background: #eee9df;
}

.product_image_wrap::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.0);
    pointer-events: none;
    transition: border-color var(--transition);
}

.product_card:hover .product_image_wrap::after {
    border-color: rgba(255,255,255,.45);
}

.product_card_image {
    transition: transform 850ms cubic-bezier(.22,.61,.36,1), filter var(--transition);
}

.product_card:hover .product_card_image {
    transform: scale(1.045);
}

.product_badge {
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(8,8,8,.88);
    font-size: 16px;
    letter-spacing: 1.4px;
}

.product_image_overlay {
    inset: auto 18px 18px;
    min-height: 52px;
    border: 1px solid rgba(234,216,169,.35);
    background: rgba(7,7,7,.90);
}

.product_card_content {
    padding-top: 21px;
}

.product_category {
    margin-bottom: 7px;
    color: var(--gold-dark);
    font-size: 16px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.woocommerce-loop-product__title {
    margin-bottom: 12px !important;
    font-size: 21px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.product_card_meta {
    min-height: 34px;
}

.product_card .price {
    font-size: 18px !important;
}

.product_card_meta .text_link {
    opacity: .66;
}

.product_card:hover .product_card_meta .text_link {
    opacity: 1;
}

/* ========================= SIGNATURE COLLECTIONS ========================= */
.collections_section {
    background:
        radial-gradient(circle at 20% 15%, rgba(198,163,90,.08), transparent 25%),
        var(--black);
}

.collections_heading > p {
    color: rgba(255,255,255,.58);
}

.collection_cards {
    align-items: stretch;
    gap: 24px;
}

.collection_card {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(234,216,169,.16);
}

.collection_card:nth-child(1) {
    width: 44%;
}

.collection_card:nth-child(2),
.collection_card:nth-child(3) {
    width: 28%;
}

.collection_card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    filter: saturate(.82);
    transition: transform 900ms cubic-bezier(.22,.61,.36,1), filter var(--transition);
}

.collection_card:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.collection_shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.80));
}

.collection_index {
    position: absolute;
    top: 26px;
    right: 28px;
    z-index: 2;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.collection_content {
    padding: 34px;
}

.collection_content strong {
    font-size: 34px;
    font-weight: 600;
}

.collection_content > span:not(.text_link) {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.7;
}

/* ========================= CRAFT ========================= */
.craft_section {
    position: relative;
    min-height: 780px;
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.craft_section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background: var(--gold);
}

.craft_inner {
    min-height: 540px;
    display: flex;
    align-items: center;
}

.craft_content {
    max-width: 760px;
    padding: 56px;
    border: 1px solid rgba(234,216,169,.28);
    background: rgba(7,7,7,.60);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(8px);
}

.craft_content > p {
    color: rgba(255,255,255,.74);
    font-size: 18px;
    line-height: 1.85;
}

.craft_points {
    border-top: 1px solid rgba(255,255,255,.14);
}

.craft_point {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.craft_point strong {
    color: var(--white);
    font-size: 17px;
}

.craft_point p {
    color: rgba(255,255,255,.60);
    font-size: 16px;
}

.gold_dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--gold);
    background: transparent;
    transform: rotate(45deg);
}

/* ========================= TESTIMONIALS / LOOKBOOK ========================= */
.testimonials_section {
    background: #fffefa;
}

.testimonial_cards {
    gap: 24px;
}

.testimonial_card {
    position: relative;
    min-height: 350px;
    padding: 42px;
    border: 1px solid rgba(143,111,50,.20);
    background: var(--white);
    box-shadow: 0 16px 48px rgba(24,18,9,.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.testimonial_card:hover {
    transform: translateY(-7px);
    border-color: rgba(143,111,50,.46);
    box-shadow: var(--shadow-soft);
}

.quote_mark {
    color: rgba(198,163,90,.22);
    font-size: 84px;
    line-height: .8;
}

.testimonial_card > p {
    font-size: 18px;
    line-height: 1.85;
}

.testimonial_person {
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.testimonial_person strong,
.testimonial_person span {
    font-size: 16px;
}

.lookbook_section {
    overflow: hidden;
    background: var(--charcoal);
}

.lookbook_row {
    display: flex;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.lookbook_item {
    min-width: 300px;
    flex: 1 0 300px;
    overflow: hidden;
}

.lookbook_item:nth-child(even) {
    margin-top: 54px;
}

.lookbook_item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(.78);
    transition: transform 750ms ease, filter var(--transition);
}

.lookbook_item:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

/* ========================= PAGE BANNERS ========================= */
.page_banner,
.shop_banner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.page_banner::after,
.shop_banner::after {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(234,216,169,.36);
    pointer-events: none;
}

.page_banner_inner {
    position: relative;
    z-index: 2;
    padding: 88px 0;
}

.page_banner_inner .banner_title {
    max-width: 880px;
    font-size: 64px;
}

/* ========================= SHOP / CATEGORY ========================= */
.subcategory_section {
    padding: 34px 0;
    border-bottom: 1px solid rgba(143,111,50,.20);
    background: var(--ivory);
}

.subcategory_row {
    gap: 16px;
}

.subcategory_chip {
    min-width: 250px;
    padding: 10px 20px 10px 10px;
    border: 1px solid rgba(143,111,50,.18);
    background: #fffefa;
    box-shadow: 0 10px 28px rgba(0,0,0,.04);
}

.subcategory_chip:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0,0,0,.08);
}

.subcategory_thumb {
    width: 76px;
    height: 76px;
}

.shop_toolbar {
    margin-bottom: 34px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.filter_toggle {
    min-height: 48px;
    padding: 0 18px 0 0;
    font-size: 16px;
}

.filter_icon {
    width: 34px;
    height: 34px;
    border-color: rgba(143,111,50,.32);
    color: var(--gold-dark);
}

.woocommerce-ordering select,
.filter_field select,
.filter_field input {
    min-height: 52px;
    border-color: rgba(33,31,27,.18);
    background: #fffefa;
}

.filter_panel {
    margin-bottom: 48px;
    padding: 34px;
    border: 1px solid rgba(143,111,50,.22);
    background: var(--ivory);
    box-shadow: inset 0 0 0 8px rgba(255,255,255,.35);
}

/* ========================= SINGLE PRODUCT ========================= */
.single_product_top {
    background: #fffefa;
}

.single_product_layout {
    gap: 92px;
}

.single_product_gallery {
    width: 60%;
}

.single_product_summary {
    width: 40%;
    top: 150px;
    padding-top: 16px;
}

.single_product_summary .product_title {
    font-size: 54px;
    letter-spacing: -1.2px;
}

.single_price {
    margin-bottom: 30px;
    color: var(--gold-dark);
    font-size: 25px;
}

.single_attributes {
    margin-bottom: 30px;
    padding: 24px 0;
    border-color: rgba(143,111,50,.20);
}

.product_note {
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: var(--ivory);
}

.single_service_notes {
    gap: 0;
    border-top: 1px solid var(--border);
}

.single_service_notes div {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    border: 1px solid rgba(33,31,27,.08);
    background: var(--ivory);
}

.woocommerce div.product div.images .flex-control-thumbs {
    gap: 12px;
    margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    overflow: hidden;
    border: 1px solid rgba(33,31,27,.10);
}

.product_story_section {
    border-top: 1px solid rgba(143,111,50,.10);
}

/* ========================= ABOUT / CONTACT / JOURNAL ========================= */
.value_cards {
    gap: 22px;
}

.value_card {
    min-height: 320px;
    padding: 40px;
    border: 1px solid rgba(143,111,50,.20);
    background: #fffefa;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.value_card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-soft);
}

.value_card h3 {
    font-size: 28px;
}

.value_card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.contact_layout {
    gap: 100px;
}

.contact_intro {
    width: 43%;
}

.contact_form_panel {
    width: 57%;
    padding: 46px;
    border: 1px solid rgba(143,111,50,.22);
    background: #fffefa;
    box-shadow: var(--shadow-soft);
}

.contact_details {
    margin: 38px 0;
    border-top: 1px solid var(--border);
}

.contact_details > div {
    padding: 19px 0;
    border-bottom: 1px solid var(--border);
}

.contact_form input,
.contact_form textarea,
.site_search_form input {
    min-height: 54px;
    border-color: rgba(33,31,27,.20);
    background: var(--white);
}

.contact_form textarea {
    min-height: 190px;
}

.journal_cards {
    gap: 50px 24px;
}

.journal_card {
    transition: transform var(--transition);
}

.journal_card:hover {
    transform: translateY(-6px);
}

.journal_image {
    overflow: hidden;
}

.journal_image img {
    transition: transform 800ms ease;
}

.journal_card:hover .journal_image img {
    transform: scale(1.04);
}

/* ========================= NEWSLETTER + FOOTER ========================= */
.newsletter_section {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.08), transparent 44%),
        var(--gold);
}

.newsletter_section::after {
    content: 'NE';
    position: absolute;
    right: -10px;
    bottom: -72px;
    color: rgba(7,7,7,.08);
    font-size: 230px;
    font-weight: 700;
    line-height: 1;
}

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

.newsletter_copy .main_title {
    max-width: 580px;
    font-size: 42px;
}

.newsletter_form input {
    min-height: 58px;
    padding: 14px 18px;
}

.site_footer {
    position: relative;
    padding: 96px 0 30px;
    overflow: hidden;
    background: #080808;
}

.site_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 74px;
    background: var(--gold);
}

.footer_top {
    gap: 70px;
    padding-bottom: 72px;
}

.footer_brand_col {
    width: 38%;
}

.footer_brand {
    gap: 18px;
}

.footer_brand img {
    width: 88px;
    height: 88px;
}

.footer_brand span {
    font-size: 20px;
    letter-spacing: 1.2px;
}

.footer_brand_col p {
    max-width: 480px;
    font-size: 17px;
    line-height: 1.85;
}

.footer_col h3 {
    margin-bottom: 24px;
    color: var(--gold-light);
    font-size: 18px;
    letter-spacing: .7px;
}

.footer_menu,
.footer_contact_list,
.footer_socials {
    gap: 13px;
}

.footer_bottom {
    padding-top: 28px;
}

/* ========================= REVEALS ========================= */
.reveal_item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 780ms ease, transform 780ms cubic-bezier(.22,.61,.36,1);
}

.reveal_item.is_visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1240px) {
    :root { --section-space: 104px; }
    .site_brand { min-width: 220px; }
    .brand_copy small { display: none; }
    .header_actions { min-width: 220px; }
    .header_action > span { display: none; }
    .header_enquire > span { display: inline; }
    .primary_menu { gap: 25px; }
    .primary_menu > .mega-menu > .sub-menu > li { width: 33.333%; }
    .product_image_wrap { height: 440px; }
}

@media (max-width: 1000px) {
    :root { --section-space: 88px; }
    .container { width: calc(100% - 40px); }
    .announcement_mark,
    .announcement_links { display: none; }
    .announcement_inner { justify-content: center; }
    .announcement_inner p { margin: 0; text-align: center; }
    .header_inner { min-height: 82px; }
    .menu_toggle { display: flex; order: 1; }
    .site_brand { order: 2; min-width: 0; margin-right: auto; }
    .brand_roundel { width: 58px; height: 58px; }
    .site_logo { width: 54px; height: 54px; }
    .brand_copy strong { font-size: 17px; }
    .header_actions { order: 3; min-width: 0; }
    .header_enquire { display: none; }
    .search_toggle { padding: 0; }
    .search_toggle > span { display: none; }

    .primary_navigation {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1300;
        width: min(470px, 92vw);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 28px;
        overflow-y: auto;
        background: #fffefa;
        box-shadow: var(--shadow-deep);
        transform: translateX(-103%);
        transition: transform var(--transition);
    }

    body.menu_open .primary_navigation { transform: translateX(0); }

    .mobile_nav_heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 22px;
        border-bottom: 1px solid var(--border);
    }

    .mobile_nav_heading .eyebrow { margin: 0; }

    .mobile_nav_close { display: inline-flex; }

    .primary_menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 0;
    }

    .primary_menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .primary_menu > li > a {
        min-height: 58px;
        display: flex;
        align-items: center;
        padding: 14px 52px 14px 0;
        font-size: 18px;
    }

    .primary_menu > li > a::before,
    .primary_menu > li > a::after { display: none; }

    .mobile_submenu_toggle {
        position: absolute;
        top: 7px;
        right: 0;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--black);
        font-size: 24px;
        transition: transform var(--transition), background var(--transition);
    }

    .menu-item.submenu_open > .mobile_submenu_toggle {
        background: var(--gold);
        transform: rotate(45deg);
    }

    .primary_menu .sub-menu,
    .primary_menu > .mega-menu > .sub-menu {
        position: static;
        width: 100%;
        min-width: 0;
        display: none;
        flex-direction: column;
        padding: 0 0 16px 18px;
        border: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .primary_menu li.submenu_open > .sub-menu { display: flex; }
    .primary_menu > .mega-menu > .sub-menu::before { display: none; }
    .primary_menu > .mega-menu > .sub-menu > li { width: 100%; padding: 0; border-top: 1px solid rgba(33,31,27,.08); }
    .primary_menu > .mega-menu > .sub-menu > li > a { min-height: 48px; display: flex; align-items: center; margin: 0; padding: 10px 42px 10px 0; border-bottom: 0; font-size: 17px; }
    .primary_menu > .mega-menu > .sub-menu > li > .sub-menu { display: none; padding: 0 0 12px 16px; }
    .primary_menu > .mega-menu > .sub-menu > li.submenu_open > .sub-menu { display: flex; }
    .primary_menu > .mega-menu > .sub-menu > li > .sub-menu a { padding: 8px 0; }

    .mobile_nav_footer {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: auto;
        padding-top: 22px;
        border-top: 1px solid var(--border);
    }

    .mobile_nav_footer span,
    .mobile_nav_footer a { font-size: 16px; }
    .mobile_nav_footer span { color: var(--muted); }
    .mobile_nav_footer a { color: var(--gold-dark); font-weight: 700; }

    .site_search_panel { top: 126px; padding: 42px 0 50px; }
    .search_panel_heading .main_title { font-size: 36px; }
    .banner_title { font-size: 58px; }
    .main_title { font-size: 44px; }
    .home_hero,
    .hero_inner { min-height: 720px; }
    .hero_content { padding: 90px 0 100px; }
    .hero_seal { width: 320px; right: -90px; }
    .hero_meta { max-width: 650px; margin-top: 56px; }
    .story_inner { flex-direction: column; gap: 90px; }
    .story_visual { width: 88%; }
    .story_content { width: 88%; align-self: flex-end; }
    .collection_cards { flex-wrap: wrap; }
    .collection_card:nth-child(1) { width: 100%; }
    .collection_card:nth-child(2),
    .collection_card:nth-child(3) { width: calc(50% - 12px); }
    .product_cards .product_card { width: calc(33.333% - 16px); }
    .single_product_layout { gap: 52px; }
    .single_product_summary .product_title { font-size: 46px; }
}

@media (max-width: 760px) {
    :root { --section-space: 72px; }
    .container { width: calc(100% - 30px); }
    .brand_copy { display: none; }
    .header_inner { gap: 14px; }
    .banner_title { font-size: 44px; letter-spacing: -1.4px; }
    .main_title { font-size: 38px; letter-spacing: -1px; }
    .split_heading { flex-direction: column; gap: 20px; }
    .split_heading > p { width: 100%; margin-top: 0; }
    .site_search_panel { top: 126px; }
    .search_panel_heading { gap: 20px; }
    .search_panel_heading .main_title { font-size: 32px; }
    .luxury_search_form { flex-direction: column; }
    .luxury_search_form .global_cta { width: 100%; }
    .home_hero,
    .hero_inner { min-height: 690px; }
    .hero_frame { inset: 14px; }
    .hero_content { padding: 82px 0 90px; }
    .hero_kicker > span:first-child { width: 34px; }
    .hero_meta { flex-direction: column; margin-top: 44px; }
    .hero_meta > span { min-height: 50px; padding: 12px 0; }
    .hero_meta > span + span { padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
    .hero_seal { width: 250px; right: -100px; bottom: -40px; }
    .hero_scroll { display: none; }
    .category_card,
    .category_card:nth-child(4n + 1),
    .category_card:nth-child(4n + 2),
    .category_card:nth-child(4n + 3),
    .category_card:nth-child(4n + 4) { width: 100%; min-height: 520px; }
    .category_content { padding: 30px; }
    .category_content strong { font-size: 34px; }
    .story_visual,
    .story_content { width: 100%; }
    .story_visual { padding: 16px 0 0 16px; }
    .story_visual > img { height: 560px; }
    .story_monogram { width: 130px; height: 130px; right: 18px; }
    .story_caption { position: static; margin-top: 14px; }
    .product_cards .product_card { width: calc(50% - 12px); }
    .product_image_wrap { height: 410px; }
    .collection_card,
    .collection_card:nth-child(1),
    .collection_card:nth-child(2),
    .collection_card:nth-child(3) { width: 100%; min-height: 560px; }
    .collection_card img { height: 560px; }
    .craft_section { min-height: 680px; padding: 70px 0; background-attachment: scroll; }
    .craft_content { padding: 34px; }
    .page_banner,
    .shop_banner { min-height: 470px; }
    .page_banner::after,
    .shop_banner::after { inset: 12px; }
    .page_banner_inner .banner_title { font-size: 44px; }
    .contact_layout { flex-direction: column; gap: 48px; }
    .contact_intro,
    .contact_form_panel { width: 100%; }
    .contact_form_panel { padding: 30px; }
    .newsletter_inner { flex-direction: column; align-items: flex-start; }
    .newsletter_form_wrap { width: 100%; }
    .footer_top { flex-wrap: wrap; gap: 44px; }
    .footer_brand_col { width: 100%; }
    .footer_col { flex: 1 1 42%; }
    .single_product_layout { flex-direction: column; }
    .single_product_gallery,
    .single_product_summary { width: 100%; }
    .single_product_summary { position: static; }
}

@media (max-width: 520px) {
    .container { width: calc(100% - 24px); }
    .announcement_inner { min-height: 48px; }
    .announcement_inner p { max-width: 340px; line-height: 1.4; }
    .header_inner { min-height: 76px; }
    .brand_roundel { width: 54px; height: 54px; }
    .site_logo { width: 50px; height: 50px; }
    .menu_toggle { width: 38px; }
    .banner_title { font-size: 38px; }
    .main_title { font-size: 34px; }
    .hero_text,
    .banner_text { font-size: 17px; }
    .hero_actions { flex-direction: column; align-items: flex-start; }
    .category_card,
    .category_card:nth-child(n) { min-height: 470px; }
    .category_content strong { font-size: 30px; }
    .product_cards { gap: 34px 12px; }
    .product_cards .product_card { width: calc(50% - 6px); }
    .product_image_wrap { height: 300px; }
    .woocommerce-loop-product__title { font-size: 18px !important; }
    .product_card_meta { align-items: flex-start; flex-direction: column; gap: 6px; }
    .product_card_meta .text_link { display: none; }
    .collection_content { padding: 28px; }
    .collection_content strong { font-size: 30px; }
    .craft_content { padding: 26px; }
    .lookbook_item { min-width: 260px; flex-basis: 260px; }
    .lookbook_item img { height: 410px; }
    .contact_form_panel { padding: 24px; }
    .form_row { flex-direction: column; }
    .newsletter_form { flex-direction: column; }
    .footer_col { flex: 1 1 100%; }
    .footer_bottom { flex-direction: column; align-items: flex-start; }
    .single_product_summary .product_title { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero_seal_ring { animation: none; }
}
