/* ============================================================
   HOUSE OF BERGINS — Main Stylesheet
   Pure white · Deep black · Minimal luxury
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --white:   #F5F1E8;
    --black:   #0A0A0A;
    --grey-1:  #EDE9DF;
    --grey-2:  #DDD8CC;
    --grey-3:  #7A756F;
    --grey-4:  #4A4540;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Montserrat', system-ui, sans-serif;
    --nav-height: 80px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.hob-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(245,241,232,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--grey-2);
    height: var(--nav-height);
    transition: var(--transition);
}

.hob-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 0 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.hob-nav__left  { display: flex; gap: 40px; align-items: center; justify-content: flex-start; }
.hob-nav__right { display: flex; gap: 40px; align-items: center; justify-content: flex-end; }

.nav-link {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-4);
    transition: color var(--transition);
}
.nav-link:hover { color: var(--black); }

.cart-link { position: relative; }
.cart-count {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    letter-spacing: 0;
}

.hob-nav__brand { text-align: center; }
.brand-link { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}

/* Mobile bar (hidden on desktop) */
.hob-mobile-bar {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    padding: 0 20px;
}
.hob-mobile-bar .brand-logo { height: 38px; }

/* Hamburger button */
.hob-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}
.hob-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--black);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
}
.hob-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hob-hamburger.is-open span:nth-child(2) { opacity: 0; }
.hob-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.hob-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hob-mobile-menu.is-open { display: flex; }

.hob-mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--grey-3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.hob-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}
.hob-btn:hover { background: var(--grey-4); }

.hob-btn--outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.hob-btn--outline:hover { background: var(--black); color: var(--white); }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hob-hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
}

.hob-hero__content {
    text-align: center;
    padding: 80px 24px 160px;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--black);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
    color: var(--grey-3);
    margin-bottom: 64px;
}

.hero-manifesto {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--black);
    margin-bottom: 56px;
    line-height: 1.4;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--grey-3);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--grey-3);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   HOMEPAGE — BRAND STATEMENT
   ============================================================ */
.hob-statement {
    padding: 140px 24px;
    background: var(--grey-1);
}

.hob-statement__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.statement-quote {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 48px;
    border: none;
}

.statement-body {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--grey-4);
    letter-spacing: 0.02em;
}

/* ============================================================
   HOMEPAGE — COLLECTION ENTRY
   ============================================================ */
.hob-collection-entry {
    padding: 160px 24px;
    background: var(--black);
    text-align: center;
}

.hob-collection-entry__inner {
    max-width: 640px;
    margin: 0 auto;
}

.collection-entry__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 24px;
}

.collection-entry__name {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.collection-entry__tagline {
    font-family: var(--font-serif);
    font-size: clamp(14px, 2vw, 20px);
    font-style: italic;
    font-weight: 300;
    color: var(--grey-3);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.collection-entry__story {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey-3);
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-bottom: 56px;
}

/* ============================================================
   HOMEPAGE — VALUES
   ============================================================ */
.hob-values {
    padding: 120px 24px;
    background: var(--white);
}

.hob-values__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--grey-2);
}

.value-item {
    background: var(--white);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--grey-3);
}

.value-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    line-height: 1.2;
}

.value-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey-4);
    letter-spacing: 0.02em;
}

/* ============================================================
   COLLECTION PAGE — HEADER
   ============================================================ */
.hob-collection-page { padding-top: var(--nav-height); }

.collection-header {
    padding: 120px 24px 80px;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--grey-2);
}

.collection-header__inner { max-width: 640px; margin: 0 auto; }

.collection-header__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 20px;
}

.collection-header__title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1;
}

.collection-header__tagline {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2.5vw, 22px);
    font-style: italic;
    font-weight: 300;
    color: var(--grey-3);
    margin-bottom: 20px;
}

.collection-header__desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.9;
    letter-spacing: 0.02em;
}

/* ============================================================
   COLLECTION PAGE — HORIZONTAL PRODUCT SCROLL
   ============================================================ */
.collection-products {
    position: relative;
    height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #060504;
}

.products-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    align-items: stretch;
    gap: 1px;
    background: #0A0907;
}
.products-track::-webkit-scrollbar { display: none; }

/* ── PRODUCT CARD — LUXURY DARK OVERLAY ── */
.product-card {
    scroll-snap-align: start;
    flex: 0 0 calc(100vw / 3);
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #0A0907;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

/* Bottom gradient for text legibility */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,5,3,0.96) 0%,
        rgba(6,5,3,0.55) 35%,
        rgba(6,5,3,0.1)  60%,
        transparent      80%
    );
    pointer-events: none;
    z-index: 1;
}

/* Subtle hover brightening */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245,241,232,0);
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 1;
}
.product-card:hover::before { background: rgba(245,241,232,0.03); }

/* Image fills entire card */
.product-card__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.8;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s;
}
.product-card:hover .product-card__image img {
    transform: scale(1.05);
    opacity: 0.92;
}

/* No-image placeholder: atmospheric radial tint */
.product-card__placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        var(--atm, rgba(50,36,14,0.35)) 0%,
        transparent 68%
    );
}

/* Card number — top left */
.product-card__number {
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(245,241,232,0.28);
    pointer-events: none;
}

/* Info panel — pinned to bottom, above gradient */
.product-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 32px 40px;
    z-index: 2;
}

.product-card__type {
    display: block;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.35);
    margin-bottom: 10px;
}

.product-card__name {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2vw, 28px);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #F5F1E8;
    margin-bottom: 8px;
    line-height: 1.15;
}

.product-card__tagline {
    font-family: var(--font-serif);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    color: rgba(245,241,232,0.5);
    margin-bottom: 20px;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.product-card__cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.45);
    border-bottom: 1px solid rgba(245,241,232,0.18);
    padding-bottom: 3px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s, border-color 0.35s;
}
.product-card:hover .product-card__cta {
    opacity: 1;
    transform: translateY(0);
    color: rgba(245,241,232,0.9);
    border-color: rgba(245,241,232,0.4);
}

/* ── SCROLL ARROWS — MINIMAL ── */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10,9,7,0.65);
    border: 1px solid rgba(245,241,232,0.14);
    color: rgba(245,241,232,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.scroll-arrow:hover {
    background: rgba(245,241,232,0.1);
    border-color: rgba(245,241,232,0.3);
    color: #F5F1E8;
}
.scroll-arrow--left  { left: 20px; }
.scroll-arrow--right { right: 20px; }

/* COLLECTION NOTE */
.collection-note {
    padding: 80px 24px;
    text-align: center;
    background: var(--grey-1);
}
.collection-note__text {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.6;
}
.collection-note__text em { color: var(--grey-3); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.hob-product-page {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height));
}

/* Product Gallery */
.product-gallery {
    background: var(--grey-1);
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    overflow: hidden;
}

.product-swiper { height: 100%; }

.swiper-slide { height: 100%; }

.product-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
    color: var(--black);
    background: rgba(255,255,255,0.9);
    width: 44px; height: 44px;
    border-radius: 0;
}
.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 600;
}

.product-swiper .swiper-pagination-bullet {
    background: var(--grey-3);
    opacity: 1;
    width: 4px; height: 4px;
    border-radius: 0;
    transition: var(--transition);
}
.product-swiper .swiper-pagination-bullet-active {
    background: var(--black);
    width: 20px;
}

/* Product Info */
.product-info {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    /* overflow-y: auto removed — implicit overflow-x:auto was clipping letter-spaced titles */
}

.product-info__collection {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 8px;
}

.product-info__type {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 20px;
}

.product-info__name {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1;
}

.product-info__tagline {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 26px);
    font-style: italic;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-info__feeling {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--grey-2);
}

.product-info__story {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Olfactive Journey */
.product-info__olfactive {
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-2);
}
.product-info__olfactive p {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.9;
    margin-bottom: 0;
}

/* Slogans */
.product-info__slogans {
    margin-bottom: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-2);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-info__slogans p {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--grey-3);
    margin: 0;
    line-height: 1.6;
}

/* WooCommerce price */
.product-info__purchase .price {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    display: block;
}

/* WooCommerce variations */
.product-info__purchase .variations { width: 100%; margin-bottom: 20px; }
.product-info__purchase .variations td { padding: 0 0 12px 0; }
.product-info__purchase .variations label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-4);
}
.product-info__purchase select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-2);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--black);
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
}
.product-info__purchase select:focus { border-color: var(--black); }

/* Add to cart button */
.product-info__purchase .single_add_to_cart_button {
    width: 100%;
    padding: 16px 40px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}
.product-info__purchase .single_add_to_cart_button:hover { background: var(--grey-4); }

/* Ingredients Accordion */
.product-accordion {
    margin-top: 32px;
    border-top: 1px solid var(--grey-2);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-trigger svg { transition: transform var(--transition); }

.accordion-content {
    display: none;
    padding: 20px 0;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.8;
    border-bottom: 1px solid var(--grey-2);
}
.accordion-content.is-open { display: block; }

.ingredients-safety {
    margin-top: 16px;
    font-size: 11px;
    color: var(--grey-3);
    font-style: italic;
}

/* Shipping note */
.product-shipping-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--grey-3);
    letter-spacing: 0.05em;
}

/* ============================================================
   ENGRAVING ADD-ON
   ============================================================ */
/* ── Engraving add-on ─────────────────────────────────────────── */

.hob-engraving {
    margin-top: 32px;
    border-top: 1px solid var(--grey-2);
    padding-top: 24px;
}

/* Header row: toggle + ? btn + price */
.engraving-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.engraving-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.engraving-toggle input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--grey-3);
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
    position: relative;
}

.engraving-toggle input[type="checkbox"]:checked {
    background: var(--black);
    border-color: var(--black);
}

.engraving-toggle input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 4px; height: 8px;
    border: 1px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.engraving-toggle__label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

.engraving-info-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--grey-3);
    background: transparent;
    font-family: var(--font-serif);
    font-size: 11px;
    color: var(--grey-4);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: border-color var(--transition), color var(--transition);
}

.engraving-info-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.engraving-toggle__price {
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--grey-4);
    margin-left: auto;
}

.engraving-toggle__price--free {
    font-family: var(--font-serif);
    font-size: 12px;
    font-style: italic;
    color: #4a7c59;
    margin-left: auto;
}

/* Info tooltip */
.engraving-tooltip {
    display: none;
    background: #f9f9f7;
    border: 1px solid var(--grey-2);
    padding: 14px 16px;
    margin-top: 10px;
}

.engraving-tooltip.is-open { display: block; }

.engraving-tooltip p {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.6;
    margin: 0 0 6px;
}

.engraving-tooltip__more {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

/* Body */
.engraving-body {
    display: none;
    margin-top: 24px;
}

.engraving-body.is-open { display: block; }

/* Size note (30ml = text only) */
.engraving-size-note {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--grey-3);
    letter-spacing: 0.05em;
    margin: -16px 0 16px;
    min-height: 14px;
}

/* Tabs */
.engraving-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--grey-2);
    margin-bottom: 24px;
}

.engraving-tab {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--transition), border-color var(--transition);
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.engraving-tab.is-active {
    color: var(--black);
    border-bottom-color: var(--black);
}

.engraving-tab:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.engraving-panel { display: none; }
.engraving-panel.is-active { display: block; }

/* Section label */
.engraving-section-label {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 12px;
}

/* Font grid */
.engraving-font-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.engraving-font-grid--sm {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.engraving-font-card {
    padding: 10px 8px;
    border: 1px solid var(--grey-2);
    background: var(--white);
    font-size: 14px;
    color: var(--black);
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    transition: border-color var(--transition), background var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.engraving-font-card:hover {
    border-color: var(--grey-3);
}

.engraving-font-card.is-active {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

/* Canvas */
.engraving-canvas-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.engraving-canvas-label {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
    text-align: center;
}

#engraving-canvas-text,
#engraving-canvas-image {
    width: 180px;
    height: 180px;
    border: 1px solid var(--grey-2);
    display: block;
    transition: border-color 0.3s ease;
}

#engraving-canvas-text.fit-ok,
#engraving-canvas-image.fit-ok {
    border-color: #4a7c59;
    box-shadow: 0 0 0 1px #4a7c59;
}

#engraving-canvas-text.fit-fail,
#engraving-canvas-image.fit-fail {
    border-color: #c0392b;
    box-shadow: 0 0 0 1px #c0392b;
}

#engraving-canvas-image.fit-warn {
    border-color: #b7860b;
    box-shadow: 0 0 0 1px #b7860b;
}

.wt-canvas {
    width: 140px;
    height: 140px;
    border: 1px solid var(--grey-2);
    display: block;
    transition: border-color 0.3s ease;
}

.wt-canvas.fit-ok   { border-color: #4a7c59; box-shadow: 0 0 0 1px #4a7c59; }
.wt-canvas.fit-fail { border-color: #c0392b; box-shadow: 0 0 0 1px #c0392b; }
.wt-canvas.fit-warn { border-color: #b7860b; box-shadow: 0 0 0 1px #b7860b; }

.engraving-fit-msg {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-align: center;
    min-height: 16px;
}

.engraving-fit-msg.ok   { color: #4a7c59; }
.engraving-fit-msg.fail { color: #c0392b; }
.engraving-fit-msg.warn { color: #b7860b; }

/* Text input */
.engraving-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--grey-2);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    resize: none;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 6px;
    box-sizing: border-box;
}

.engraving-field:focus { border-color: var(--black); }

/* Char counter */
.engraving-char-row {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    margin-bottom: 12px;
}

#engraving-char-count {
    font-family: var(--font-serif);
    font-size: 11px;
    color: var(--black);
}

.engraving-char-max {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--grey-3);
}

/* Font size slider */
.engraving-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.engraving-slider-wrap label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-4);
    white-space: nowrap;
}

#engraving-font-size,
.wt-size-slider {
    flex: 1;
    accent-color: var(--black);
}

.engraving-slider-val {
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--grey-4);
    min-width: 28px;
    text-align: right;
}

/* Image panel notes */
.engraving-image-notes {
    margin-bottom: 16px;
}

.engraving-image-notes p {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.8;
    margin: 0;
}

.engraving-bw-note {
    font-family: var(--font-sans);
    font-size: 10px;
    color: #b7860b;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

/* Text alignment controls */
.engraving-align-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.engraving-align-label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-4);
    white-space: nowrap;
}

.engraving-align-btns {
    display: flex;
    gap: 6px;
}

.engraving-align-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--grey-2);
    background: var(--white);
    color: var(--grey-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    padding: 0;
}

.engraving-align-btn:hover {
    border-color: var(--grey-3);
    color: var(--black);
}

.engraving-align-btn.is-active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

/* Image size choice (100ml) */
.engraving-img-size-info {
    margin-bottom: 12px;
}

.engraving-size-choice {
    margin-bottom: 16px;
}

.engraving-size-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.engraving-size-btn {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--grey-2);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-4);
    cursor: pointer;
    text-align: center;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.engraving-size-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.engraving-size-btn.is-active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

/* Upload drop zone */
.engraving-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed var(--grey-2);
    padding: 28px 20px;
    cursor: pointer;
    transition: border-color var(--transition);
    margin-bottom: 12px;
}

.engraving-upload-label:hover { border-color: var(--black); }

.engraving-upload-label span {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-3);
}

.engraving-upload-label small {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--grey-3);
    font-weight: 300;
}

#engraving-image-file { display: none; }

/* ── World Tour bundle styles ─────────────────────────────────── */

.hob-engraving--bundle .engraving-body {
    margin-top: 20px;
}

.engraving-bundle-header {
    margin-bottom: 20px;
}

.engraving-bundle-note {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.6;
    margin-bottom: 12px;
}

.engraving-bundle-counters {
    display: flex;
    gap: 12px;
}

.engraving-bundle-counter {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    background: #f5f5f3;
    border: 1px solid var(--grey-2);
    padding: 5px 12px;
}

.engraving-bottle-slot {
    border-top: 1px solid var(--grey-2);
    padding-top: 16px;
    margin-top: 16px;
}

.engraving-bottle-slot:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.engraving-bottle-slot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.engraving-bottle-slot__name {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: italic;
    color: var(--black);
    letter-spacing: 0.04em;
}

.engraving-bottle-slot__btns {
    display: flex;
    gap: 6px;
}

.wt-type-btn {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--grey-2);
    background: var(--white);
    color: var(--grey-4);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.wt-type-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.wt-type-btn.is-active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.wt-type-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.engraving-bottle-slot__body {
    padding-top: 8px;
}

.wt-sub-panel {
    display: none;
}

.wt-sub-panel.is-active {
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.hob-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.hob-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.footer-brand-tagline {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }

.footer-col__title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.footer-col__link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
    line-height: 1.5;
}
.footer-col__link:hover { color: var(--white); }

/* Newsletter */
.footer-newsletter {
    text-align: center;
    padding: 56px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 56px;
}
.footer-newsletter__label {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F5F1E8;
    margin-bottom: 10px;
}
.footer-newsletter__sub {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(245,241,232,0.45);
    margin-bottom: 32px;
}
.footer-newsletter__row {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
}
.footer-newsletter__input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    color: #F5F1E8;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.04em;
    outline: none;
    transition: border-color var(--transition);
}
.footer-newsletter__input::placeholder { color: rgba(245,241,232,0.3); }
.footer-newsletter__input:focus { border-color: rgba(245,241,232,0.4); }
.footer-newsletter__btn {
    padding: 14px 28px;
    background: #F5F1E8;
    color: #0A0A0A;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid #F5F1E8;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-newsletter__btn:hover { background: #EDE9DF; border-color: #EDE9DF; }
.footer-newsletter__btn:disabled { opacity: 0.5; cursor: not-allowed; }
.footer-newsletter__msg {
    margin-top: 14px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    min-height: 16px;
    color: rgba(245,241,232,0.6);
}
.footer-newsletter__msg.is-success { color: #a8d5b5; }
.footer-newsletter__msg.is-error   { color: #e8a5a5; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

/* ============================================================
   LEGAL / CONTENT PAGES TYPOGRAPHY
   ============================================================ */
.hob-page-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 0 120px;
}

.hob-page-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 72px;
    line-height: 1.1;
}

.hob-page-content p {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.95;
    color: var(--black);
    margin-bottom: 1.8em;
    letter-spacing: 0.01em;
}

.hob-page-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-top: 3em;
    margin-bottom: 1em;
    line-height: 1.2;
}

.hob-page-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    margin-top: 2.5em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.hob-page-content ul,
.hob-page-content ol {
    margin: 0 0 1.8em 1.5em;
}

.hob-page-content li {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.95;
    color: var(--black);
    margin-bottom: 0.5em;
}

.hob-page-content a {
    color: var(--black);
    border-bottom: 1px solid var(--grey-2);
    transition: border-color var(--transition);
}
.hob-page-content a:hover { border-color: var(--black); }

.hob-page-content strong {
    font-weight: 500;
}

@media (max-width: 768px) {
    .hob-page-content { padding: 48px 0 80px; }
    .hob-page-title { margin-bottom: 48px; }
}

/* ============================================================
   WOOCOMMERCE — CART & CHECKOUT (minimal overrides)
   ============================================================ */

/* Template container for all WooCommerce pages */
.hob-woo-page {
    padding-top: var(--nav-height);
    min-height: 100vh;
    padding-bottom: 80px;
}
.hob-woo-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.woocommerce-page {
    padding-top: var(--nav-height);
    min-height: 100vh;
    padding-bottom: 80px;
}

.woocommerce { max-width: 960px; margin: 0 auto; padding: 80px 24px; }

/* Block cart / checkout width fix */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
    max-width: 100% !important;
}

/* Express payment buttons — prevent overflow */
.wc-block-components-express-payment,
.wc-block-cart__payment-button-container {
    width: 100%;
    overflow: hidden;
}

.woocommerce h1, .woocommerce h2, .woocommerce h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce textarea,
.woocommerce select {
    border: 1px solid var(--grey-2);
    border-radius: 0;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}
.woocommerce input:focus, .woocommerce textarea:focus, .woocommerce select:focus {
    border-color: var(--black);
}

.woocommerce .button,
.woocommerce button.button {
    background: var(--black);
    color: var(--white);
    border-radius: 0;
    padding: 14px 40px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.woocommerce .button:hover { background: var(--grey-4); }

/* ============================================================
   HOMEPAGE — PHILOSOPHY QUOTE
   ============================================================ */
.hob-philosophy {
    padding: 120px 24px;
    background: var(--white);
    text-align: center;
}
.hob-philosophy__inner {
    max-width: 680px;
    margin: 0 auto;
}
.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: var(--black);
    margin-bottom: 32px;
}
.philosophy-attribution {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-3);
}

/* ============================================================
   HOMEPAGE — WORLD TOUR FEATURED CARD
   ============================================================ */
.hob-world-tour-section {
    padding: 0 48px 80px;
}
.hob-world-tour-card {
    background: var(--black);
    padding: 80px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.world-tour-card__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 20px;
}
.world-tour-card__name {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F5F1E8;
    margin-bottom: 12px;
    line-height: 1;
}
.world-tour-card__tagline {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 22px);
    font-style: italic;
    font-weight: 300;
    color: rgba(245,241,232,0.6);
    margin-bottom: 24px;
    letter-spacing: 0.06em;
}
.world-tour-card__desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(245,241,232,0.55);
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}
.world-tour-card__fragrances {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 48px;
}
.world-tour-fragrance-item {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: rgba(245,241,232,0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(245,241,232,0.1);
    letter-spacing: 0.04em;
}
.world-tour-fragrance-item:first-child { border-top: 1px solid rgba(245,241,232,0.1); }
.world-tour-card__cta {
    display: inline-block;
    padding: 16px 48px;
    background: #F5F1E8;
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}
.world-tour-card__cta:hover { background: #EDE9DF; }
.world-tour-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.world-tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 460px;
}

/* ============================================================
   HOMEPAGE — SCENT COLLECTION GRID
   ============================================================ */
.hob-scent-section {
    padding: 100px 0 0;
    background: #0A0907;
}
.hob-scent-section__header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 48px;
}
.hob-scent-section__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.35);
    margin-bottom: 14px;
}
.hob-scent-section__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
    color: #F5F1E8;
    line-height: 1;
}
.hob-scent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #141210;
}

/* ── SCENT CARD — DARK OVERLAY (mirrors product-card) ── */
.hob-scent-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0A0907;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Bottom gradient overlay */
.hob-scent-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,5,3,0.96) 0%,
        rgba(6,5,3,0.5)  38%,
        rgba(6,5,3,0.08) 62%,
        transparent      80%
    );
    pointer-events: none;
    z-index: 1;
}
.hob-scent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245,241,232,0);
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 1;
}
.hob-scent-card:hover::before { background: rgba(245,241,232,0.03); }

/* Image fills card */
.hob-scent-card__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hob-scent-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.8;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s;
}
.hob-scent-card:hover .hob-scent-card__image img {
    transform: scale(1.05);
    opacity: 0.92;
}

/* No-image placeholder */
.hob-scent-card__placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        var(--atm, rgba(50,36,14,0.35)) 0%,
        transparent 68%
    );
}

/* Card number — top left */
.hob-scent-card__number {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(245,241,232,0.28);
    pointer-events: none;
}

/* Info panel — bottom overlay */
.hob-scent-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 28px 36px;
    z-index: 2;
}
.hob-scent-card__name {
    font-family: var(--font-serif);
    font-size: clamp(18px, 1.8vw, 24px);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #F5F1E8;
    margin-bottom: 7px;
    line-height: 1.15;
}
.hob-scent-card__tagline {
    font-family: var(--font-serif);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    color: rgba(245,241,232,0.5);
    line-height: 1.55;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.hob-scent-card__link {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.45);
    border-bottom: 1px solid rgba(245,241,232,0.18);
    padding-bottom: 3px;
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s, border-color 0.35s;
}
.hob-scent-card:hover .hob-scent-card__link {
    opacity: 1;
    transform: translateY(0);
    color: rgba(245,241,232,0.9);
    border-color: rgba(245,241,232,0.4);
}

/* ============================================================
   HOMEPAGE — CRAFT SECTION
   ============================================================ */
.hob-craft {
    padding: 120px 48px;
    background: var(--grey-1);
}
.hob-craft__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hob-craft__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 24px;
}
.hob-craft__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hob-craft__body {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.9;
    margin-bottom: 40px;
}
.hob-craft__visual {
    aspect-ratio: 4/5;
    background: var(--grey-2);
    overflow: hidden;
}
.hob-craft__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   HOMEPAGE — STORY / NEWSLETTER CTA SECTION
   ============================================================ */
.hob-story {
    padding: 120px 24px;
    background: var(--white);
    text-align: center;
}
.hob-story__inner {
    max-width: 600px;
    margin: 0 auto;
}
.hob-story__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 24px;
}
.hob-story__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hob-story__body {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.9;
    margin-bottom: 48px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hob-nav { padding: 0 32px; }
    .hob-world-tour-card { gap: 48px; padding: 60px 48px; }
    .hob-scent-grid { grid-template-columns: repeat(2, 1fr); }
    .hob-scent-section { padding: 80px 0 0; }
    .hob-scent-section__header { padding: 0 28px; }
    .hob-world-tour-section { padding: 0 28px 60px; }
    .product-layout { grid-template-columns: 1fr; }
    .product-gallery {
        position: relative;
        top: 0;
        height: 60vw;
        min-height: 400px;
    }
    .product-info { padding: 48px 32px; }
    .product-card { flex: 0 0 50vw; }
    .hob-values__inner { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .hob-nav { display: none; }
    .hob-mobile-bar { display: flex; }

    /* Hero — home page */
    .hob-hero__content { padding: 60px 28px 120px; }
    .hero-title {
        font-size: clamp(36px, 11vw, 64px);
        letter-spacing: 0.1em;
    }
    .hero-manifesto { font-size: clamp(18px, 4.5vw, 28px); }

    /* Collection page header */
    .collection-header { padding: 80px 28px 60px; }
    .collection-header__title {
        font-size: clamp(28px, 10vw, 48px);
        letter-spacing: 0.08em;
    }
    .collection-header__tagline { font-size: clamp(14px, 3.5vw, 20px); }

    /* WooCommerce / general pages */
    .hob-woo-container { padding: 0 20px; }
    .entry-content { padding: 0 20px; }

    /* Values section */
    .value-item { padding: 40px 28px; }
    .collection-products { height: 80vh; overflow: hidden; }
    .products-track { width: 100%; max-width: 100%; }
    .product-card { flex: 0 0 100%; width: 100%; max-width: 100%; }
    .product-card__name { font-size: 26px; }
    .product-card__info { padding: 0 24px 36px; }
    .product-info { padding: 40px 20px; }
    .footer-cols { grid-template-columns: 1fr; }
    .hob-footer__inner { padding: 0 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .footer-newsletter__row { flex-direction: column; }
    .footer-newsletter__input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
    .footer-newsletter__btn { width: 100%; }
    .value-item { padding: 40px 24px; }

    /* New homepage sections — mobile */
    .hob-philosophy { padding: 80px 24px; }
    .hob-world-tour-section { padding: 0 20px 60px; }
    .hob-world-tour-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 28px;
    }
    .world-tour-card__visual { min-height: 280px; }
    .world-tour-card__img { min-height: 280px; }
    .hob-scent-section { padding: 60px 0 0; }
    .hob-scent-section__header { padding: 0 20px; }
    .hob-scent-grid { grid-template-columns: repeat(2, 1fr); }
    .hob-craft { padding: 80px 24px; }
    .hob-craft__inner { grid-template-columns: 1fr; gap: 40px; }
    .hob-craft__visual { aspect-ratio: 16/9; }
    .hob-story { padding: 80px 24px; }
}

/* ============================================================
   CART & CHECKOUT — BRANDED OVERRIDES
   ============================================================ */

/* Page wrapper */
.woocommerce-cart .hob-woo-container,
.woocommerce-checkout .hob-woo-container {
    max-width: 1200px;
    padding: 80px 48px;
}

/* ── PAGE HEADINGS ── */
.woocommerce-cart h1,
.woocommerce-checkout h1,
.wc-block-components-title,
.wc-block-cart__main h2,
.wc-block-checkout__main h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 48px;
}

/* ── REMOVE ALL ROUNDED CORNERS ── */
.wc-block-components-button,
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea,
.wc-block-components-quantity-stepper,
.wc-block-components-quantity-stepper__button,
.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-checkout__actions .wc-block-components-button {
    border-radius: 0 !important;
}

/* ── INPUTS ── */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
    border: 1px solid var(--grey-2) !important;
    background: var(--white) !important;
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    color: var(--black) !important;
    padding: 14px 16px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-textarea textarea:focus {
    border-color: var(--black) !important;
    box-shadow: none !important;
}
.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-components-textarea label {
    font-family: var(--font-sans) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--grey-3) !important;
}

/* ── BUTTONS ── */
.wc-block-components-button,
.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-checkout__actions .wc-block-components-button {
    background: var(--black) !important;
    color: var(--white) !important;
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 16px 40px !important;
    cursor: pointer !important;
    transition: background 0.4s ease !important;
    min-height: 52px !important;
}
.wc-block-components-button:hover {
    background: var(--grey-4) !important;
}

/* ── CART ITEM ROW ── */
.wc-block-cart-items__header,
.wc-block-cart-item__wrap {
    border-bottom: 1px solid var(--grey-2) !important;
    border-top: none !important;
    padding: 24px 0 !important;
}
.wc-block-cart-items__header span {
    font-family: var(--font-sans) !important;
    font-size: 9px !important;
    font-weight: 400 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: var(--grey-3) !important;
}
.wc-block-components-product-name,
.wc-block-components-product-name a {
    font-family: var(--font-serif) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em !important;
    color: var(--black) !important;
    text-decoration: none !important;
}
.wc-block-components-product-metadata__description,
.wc-block-components-product-details {
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    color: var(--grey-3) !important;
    letter-spacing: 0.05em !important;
}

/* ── PRODUCT PRICE ── */
.wc-block-components-product-price,
.wc-block-components-product-price .woocommerce-Price-amount {
    font-family: var(--font-serif) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: var(--black) !important;
}

/* ── QUANTITY STEPPER ── */
.wc-block-components-quantity-stepper {
    border: 1px solid var(--grey-2) !important;
    background: transparent !important;
}
.wc-block-components-quantity-stepper__button {
    background: transparent !important;
    color: var(--black) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
}
.wc-block-components-quantity-stepper input {
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    color: var(--black) !important;
    background: transparent !important;
    border: none !important;
    text-align: center !important;
}

/* ── REMOVE ITEM ── */
.wc-block-components-product-remove-button {
    color: var(--grey-3) !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s ease !important;
}
.wc-block-components-product-remove-button:hover { opacity: 1 !important; }

/* ── ORDER SUMMARY / TOTALS ── */
.wc-block-cart__sidebar .wc-block-components-panel,
.wc-block-components-totals-wrapper {
    background: var(--grey-1) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 40px 32px !important;
}
.wc-block-components-totals-item {
    border-bottom: 1px solid var(--grey-2) !important;
    padding: 14px 0 !important;
}
.wc-block-components-totals-item__label {
    font-family: var(--font-sans) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--grey-3) !important;
}
.wc-block-components-totals-item__value {
    font-family: var(--font-serif) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: var(--black) !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-family: var(--font-serif) !important;
    font-size: 16px !important;
    letter-spacing: 0.1em !important;
    color: var(--black) !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 22px !important;
}

/* ── CHECKOUT STEPS ── */
.wc-block-checkout__step-title,
.wc-block-components-checkout-step__title {
    font-family: var(--font-serif) !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    letter-spacing: 0.1em !important;
    color: var(--black) !important;
}
.wc-block-components-checkout-step__description {
    font-family: var(--font-sans) !important;
    font-size: 12px !important;
    color: var(--grey-3) !important;
    letter-spacing: 0.03em !important;
}

/* ── COUPON / PROMO ── */
.wc-block-components-totals-coupon__form {
    border: 1px solid var(--grey-2) !important;
    padding: 16px !important;
    border-radius: 0 !important;
}
.wc-block-components-totals-coupon__button {
    font-family: var(--font-sans) !important;
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--grey-3) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
}

/* ── NOTICE / ALERTS ── */
.wc-block-components-notice-banner,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
    border-radius: 0 !important;
    font-family: var(--font-sans) !important;
    font-size: 12px !important;
    letter-spacing: 0.05em !important;
    border-top: 2px solid var(--black) !important;
    background: var(--grey-1) !important;
    color: var(--black) !important;
}

/* ── EMPTY CART ── */
.wc-block-cart__empty-cart__title {
    font-family: var(--font-serif) !important;
    font-size: clamp(24px, 3vw, 40px) !important;
    font-weight: 300 !important;
    font-style: italic !important;
    letter-spacing: 0.1em !important;
    color: var(--black) !important;
}
.wc-block-cart__empty-cart__ p {
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    color: var(--grey-3) !important;
}

/* ── ORDER CONFIRMATION PAGE ── */
.woocommerce-order-received h1,
.wc-block-order-confirmation-summary {
    font-family: var(--font-serif) !important;
    font-weight: 300 !important;
    letter-spacing: 0.1em !important;
}
.woocommerce-order-overview {
    background: var(--grey-1) !important;
    border: none !important;
    padding: 32px !important;
    display: flex !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    margin-bottom: 48px !important;
}
.woocommerce-order-overview li {
    font-family: var(--font-sans) !important;
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--grey-3) !important;
}
.woocommerce-order-overview li strong {
    display: block !important;
    font-family: var(--font-serif) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: var(--black) !important;
    margin-top: 6px !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
}

/* ── MOBILE CART/CHECKOUT ── */
@media (max-width: 768px) {
    .woocommerce-cart .hob-woo-container,
    .woocommerce-checkout .hob-woo-container {
        padding: 60px 20px;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.hob-about {
    padding-top: var(--nav-height);
}

/* Hero */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    text-align: center;
    padding: 120px 24px;
}
.about-hero__inner { max-width: 720px; margin: 0 auto; }
.about-hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.35);
    margin-bottom: 40px;
}
.about-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(56px, 8vw, 108px);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F5F1E8;
    line-height: 1.05;
    margin-bottom: 48px;
}
.about-hero__title em {
    font-style: italic;
    letter-spacing: 0.04em;
}
.about-hero__quote {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 22px);
    font-style: italic;
    font-weight: 300;
    color: rgba(245,241,232,0.5);
    letter-spacing: 0.04em;
}

/* Shared section base */
.about-section { padding: 120px 48px; }
.about-section--light { background: var(--white); }
.about-section--dark  { background: var(--black); }
.about-section--mid   { background: var(--grey-1); }

/* Split layout (label | body) */
.about-section__inner--split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
}
.about-split__label {
    padding-top: 8px;
}
.about-split__label span {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-3);
}
.about-section__heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.1;
}
.about-section__text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-4);
    line-height: 1.95;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    max-width: 620px;
}
.about-section__text:last-of-type { margin-bottom: 0; }

/* Pillars grid */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid var(--grey-2);
}
.about-pillar {
    padding: 28px 0;
    border-bottom: 1px solid var(--grey-2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 24px;
}
.about-pillar__label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
}
.about-pillar__value {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.03em;
}

/* Centered layout */
.about-section__inner--centered {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about-centered__label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 32px;
}
.about-section--dark .about-centered__label {
    color: rgba(245,241,232,0.3);
}
.about-centered__quote {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: #F5F1E8;
    margin-bottom: 48px;
    border: none;
    padding: 0;
}
.about-centered__heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.1;
}
.about-centered__body {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}
.about-section--dark .about-centered__body { color: rgba(245,241,232,0.55); }
.about-section--mid  .about-centered__body { color: var(--grey-4); }
.about-centered__body:last-of-type { margin-bottom: 48px; }

/* Outline button variant for light bg */
.hob-btn--outline-dark {
    display: inline-block;
    padding: 15px 48px;
    border: 1px solid var(--black);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition);
}
.hob-btn--outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

/* Closing manifesto */
.about-closing {
    padding: 140px 24px;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--grey-2);
}
.about-closing__inner { max-width: 480px; margin: 0 auto; }
.about-closing__line {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--black);
    line-height: 1.6;
}
.about-closing__line--italic {
    font-style: italic;
    color: var(--grey-3);
    letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.hob-contact { padding-top: var(--nav-height); }

.contact-header {
    padding: 120px 48px 80px;
    background: var(--white);
    border-bottom: 1px solid var(--grey-2);
    text-align: center;
}
.contact-header__inner { max-width: 640px; margin: 0 auto; }
.contact-header__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 20px;
}
.contact-header__title {
    font-family: var(--font-serif);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1;
}
.contact-header__sub {
    font-family: var(--font-serif);
    font-size: clamp(15px, 2vw, 20px);
    font-style: italic;
    font-weight: 300;
    color: var(--grey-3);
}

.contact-body {
    padding: 100px 48px;
    background: var(--white);
}
.contact-body__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 100px;
    align-items: start;
}

/* Info column */
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info__block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 0;
    border-bottom: 1px solid var(--grey-2);
}
.contact-info__block:first-child { border-top: 1px solid var(--grey-2); }
.contact-info__label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
}
.contact-info__value {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color var(--transition);
}
a.contact-info__value:hover { color: var(--grey-4); }
.contact-info__value--muted { color: var(--grey-3); font-style: italic; }
.contact-info__note {
    margin-top: 32px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--grey-3);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.contact-form__row { display: flex; flex-direction: column; gap: 28px; }
.contact-form__row--half { flex-direction: row; gap: 24px; }
.contact-form__row--half .contact-form__field { flex: 1; }
.contact-form__field { display: flex; flex-direction: column; gap: 10px; }
.contact-form__label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-3);
}
.contact-form__req { color: var(--black); }
.contact-form__input,
.contact-form__textarea {
    border: 1px solid var(--grey-2);
    background: var(--white);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    border-radius: 0;
    resize: vertical;
}
.contact-form__input:focus,
.contact-form__textarea:focus { border-color: var(--black); }
.contact-form__submit {
    align-self: flex-start;
    padding: 16px 52px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.contact-form__submit:hover { background: var(--grey-4); }

/* Success / error states */
.contact-success {
    padding: 48px 0;
    border-top: 2px solid var(--black);
}
.contact-success__heading {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--black);
    margin-bottom: 12px;
}
.contact-success__body {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--grey-3);
    letter-spacing: 0.03em;
}
.contact-error {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #8B0000;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid #8B0000;
    background: #fff8f8;
}

/* Contact mobile */
@media (max-width: 900px) {
    .contact-body { padding: 64px 28px; }
    .contact-body__inner { grid-template-columns: 1fr; gap: 56px; }
    .contact-form__row--half { flex-direction: column; }
}
@media (max-width: 600px) {
    .contact-header { padding: 100px 20px 60px; }
    .contact-body { padding: 56px 20px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.hob-404 {
    padding-top: var(--nav-height);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
}
.hob-404__inner { max-width: 640px; margin: 0 auto; }
.hob-404__code {
    font-family: var(--font-serif);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(245,241,232,0.06);
    line-height: 1;
    margin-bottom: 0;
}
.hob-404__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F5F1E8;
    line-height: 1.1;
    margin-top: -20px;
    margin-bottom: 32px;
}
.hob-404__title em {
    font-style: italic;
    letter-spacing: 0.04em;
    text-transform: none;
}
.hob-404__body {
    font-family: var(--font-serif);
    font-size: clamp(15px, 2vw, 20px);
    font-style: italic;
    font-weight: 300;
    color: rgba(245,241,232,0.4);
    line-height: 1.7;
    margin-bottom: 56px;
    letter-spacing: 0.03em;
}
.hob-404__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hob-404 .hob-btn {
    background: #F5F1E8;
    color: var(--black);
    border-color: #F5F1E8;
}
.hob-404 .hob-btn:hover { background: #EDE9DF; }
.hob-404 .hob-btn--outline-dark {
    border-color: rgba(245,241,232,0.3);
    color: rgba(245,241,232,0.6);
}
.hob-404 .hob-btn--outline-dark:hover {
    background: rgba(245,241,232,0.08);
    color: #F5F1E8;
}

/* About mobile */
@media (max-width: 900px) {
    .about-section { padding: 80px 28px; }
    .about-section__inner--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-split__label { padding-top: 0; }
    .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .about-hero { padding: 100px 24px; }
    .about-section { padding: 64px 20px; }
    .about-closing { padding: 100px 24px; }
}
