/* ─── CSS VARIABLES ─── */
:root {
    --ink: #0d0d0d;
    --ink-60: rgba(13, 13, 13, 0.6);
    --ink-30: rgba(13, 13, 13, 0.3);
    --ink-10: rgba(13, 13, 13, 0.08);
    --white: #ffffff;
    --cream: #f9f7f3;
    --cream-dark: #f0ede6;
    --accent: #c8a96e;
    --accent-dark: #a8893e;
    --accent-light: #f0e4c8;
    --teal: #1a4a4a;
    --teal-mid: #2d6b6b;
    --teal-light: #e8f2f2;
    --red: #c0392b;
    --nav-h: 110px;
    --nav-top-h: 64px;
    --nav-bottom-h: 46px;
    --mega-transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── UTILITY ─── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.mono {
    font-family: 'DM Mono', monospace;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.accent-text {
    color: var(--accent-dark);
}

.teal-text {
    color: var(--teal);
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
    background: var(--teal);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 200;
}

.announce-bar a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 8px;
}

.announce-bar a:hover {
    text-decoration: underline;
}

/* ─── NAVIGATION — TWO-ROW STICKY ─── */
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--ink-10);
    transition: box-shadow 0.3s;
}

.nav-wrapper.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

/* ── Row 1: Logo + Actions ── */
.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    border-bottom: 1px solid var(--ink-10);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--teal);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--accent);
    font-size: 19px;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.nav-logo-sub {
    font-size: 10px;
    color: var(--ink-60);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Top-row right actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--ink-30);
    border-radius: 50%;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.2s;
    flex-shrink: 0;
}

.nav-search-btn:hover {
    background: var(--ink-10);
}

.btn-outline {
    padding: 8px 18px;
    border: 1.5px solid var(--teal);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-primary {
    padding: 9px 20px;
    background: var(--accent);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* ── Row 2: Nav Menu ── */
.nav-bottom {
    display: flex;
    align-items: center;
    height: 46px;
    background: var(--cream);
}

/* Primary nav links */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    gap: 0;
    flex: 1;
}

.nav-item {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    padding: 0 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--teal);
}

.nav-item:hover .nav-link::after {
    transform: scaleX(1);
}

.nav-chevron {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
    opacity: 0.45;
    flex-shrink: 0;
}

.nav-item:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Quick links on right of nav row 2 */
.nav-quick {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    flex-shrink: 0;
    border-left: 1px solid var(--ink-10);
    margin-left: auto;
}

.nav-quick-link {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-60);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s;
    border-right: 1px solid var(--ink-10);
    white-space: nowrap;
}

.nav-quick-link:hover {
    color: var(--teal);
    background: rgba(26, 74, 74, 0.04);
}

.nav-quick-link svg {
    flex-shrink: 0;
}

/* ─── MEGA MENU ─── */
.mega-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    /* updated by JS */
    background: rgba(13, 13, 13, 0.3);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mega-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.mega-menu {
    position: fixed;
    top: 0;
    /* overridden by JS */
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--mega-transition), visibility var(--mega-transition), transform var(--mega-transition);
    max-height: 80vh;
    overflow-y: auto;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-layout {
    display: grid;
    min-height: 480px;
}

.mega-layout.cols-2 {
    grid-template-columns: 280px 1fr;
}

.mega-layout.cols-3 {
    grid-template-columns: 280px 1fr 1fr;
}

.mega-layout.cols-4 {
    grid-template-columns: 240px 1fr 1fr 1fr;
}

.mega-layout.cols-5 {
    grid-template-columns: 220px 1fr 1fr 1fr 1fr;
}

.mega-sidebar {
    background: var(--cream);
    padding: 40px 32px;
    border-right: 1px solid var(--ink-10);
}

.mega-sidebar-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-60);
    margin-bottom: 16px;
}

.mega-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--teal);
    margin-bottom: 16px;
}

.mega-sidebar-desc {
    font-size: 14px;
    color: var(--ink-60);
    line-height: 1.65;
    margin-bottom: 24px;
}

.mega-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    padding: 10px 18px;
    background: var(--white);
    border: 1.5px solid var(--teal);
    border-radius: 4px;
    transition: all 0.2s;
}

.mega-sidebar-cta:hover {
    background: var(--teal);
    color: var(--white);
}

.mega-sidebar-stat {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ink-10);
}

.mega-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-dark);
    line-height: 1;
}

.mega-stat-label {
    font-size: 12px;
    color: var(--ink-60);
    margin-top: 4px;
}

.mega-col {
    padding: 40px 28px;
    border-right: 1px solid var(--ink-10);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ink-10);
}

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-link {
    display: block;
    padding: 7px 12px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s;
    line-height: 1.4;
}

.mega-link:hover {
    background: var(--teal-light);
    color: var(--teal);
    padding-left: 16px;
}

.mega-link.featured {
    font-weight: 600;
    color: var(--teal);
}

.mega-link-sub {
    font-size: 11.5px;
    color: var(--ink-60);
    display: block;
    margin-top: 2px;
    font-weight: 400;
}

.mega-section-gap {
    margin-top: 24px;
}

.mega-section-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-60);
    padding: 4px 12px;
    margin-bottom: 6px;
}

.mega-divider {
    height: 1px;
    background: var(--ink-10);
    margin: 16px 12px;
}

.mega-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 2px 7px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

.tag-new {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.tag-hot {
    background: #fde8e6;
    color: var(--red);
}

.tag-pro {
    background: var(--teal-light);
    color: var(--teal);
}

.mega-footer-band {
    background: var(--cream-dark);
    border-top: 1px solid var(--ink-10);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.mega-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-60);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.mega-footer-item:hover {
    color: var(--teal);
}

.mega-footer-item svg {
    flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--ink);
    font-size: 18px;
}

.footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.footer-nl-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-nl-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-nl-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 480px;
}

.footer-nl-input {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.footer-nl-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-nl-input:focus {
    border-color: var(--accent);
}

.footer-nl-btn {
    padding: 13px 24px;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.footer-nl-btn:hover {
    background: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SEARCH PANEL ─── */
.search-panel {
    position: fixed;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    /* top is set dynamically by JS */
}

.search-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 32px;
}

.search-input {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    border: none;
    outline: none;
    color: var(--ink);
    background: none;
    caret-color: var(--accent);
}

.search-input::placeholder {
    color: var(--ink-30);
}

.search-close {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-60);
    border-radius: 50%;
    transition: background 0.2s;
}

.search-close:hover {
    background: var(--ink-10);
}

/* ─── MOBILE HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE DRAWER ─── */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    pointer-events: none;
}

.mobile-drawer.open {
    pointer-events: all;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.5);
    opacity: 0;
    transition: opacity 0.35s;
    backdrop-filter: blur(4px);
}

.mobile-drawer.open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open .mobile-drawer-panel {
    transform: translateX(0);
}

/* Drawer header */
.mob-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    border-bottom: 1px solid var(--ink-10);
    flex-shrink: 0;
    background: var(--white);
}

.mob-drawer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mob-logo-img {
    width: 215px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.mob-drawer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--teal);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--accent);
    font-size: 16px;
}

.mob-drawer-logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.mob-drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--ink-10);
    border-radius: 50%;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.2s;
}

.mob-drawer-close:hover {
    background: var(--ink-10);
}

/* Drawer search bar */
.mob-drawer-search {
    padding: 12px 20px;
    border-bottom: 1px solid var(--ink-10);
    flex-shrink: 0;
}

.mob-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border-radius: 8px;
    padding: 10px 14px;
}

.mob-search-input-wrap svg {
    color: var(--ink-30);
    flex-shrink: 0;
}

.mob-search-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
}

.mob-search-input::placeholder {
    color: var(--ink-30);
}

/* Drawer body — two-level stack */
.mob-drawer-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Level 1: main menu list */
.mob-level-1 {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 80px;
}

.mob-level-1.slide-out {
    transform: translateX(-40px);
    opacity: 0;
    pointer-events: none;
}

.mob-nav-item {
    border-bottom: 1px solid var(--ink-10);
}

.mob-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: background 0.15s;
}

.mob-nav-trigger:hover {
    background: var(--cream);
}

.mob-nav-trigger svg {
    color: var(--ink-30);
    flex-shrink: 0;
}

.mob-nav-link {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 56px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.15s;
    border-bottom: 1px solid var(--ink-10);
}

.mob-nav-link:hover {
    background: var(--cream);
}

/* Level 2: sub-menu panel */
.mob-level-2 {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    padding-bottom: 80px;
}

.mob-level-2.slide-in {
    transform: translateX(0);
}

.mob-sub-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: 56px;
    border-bottom: 2px solid var(--accent);
    background: var(--cream);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mob-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--ink-10);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    color: var(--ink);
    flex-shrink: 0;
    transition: all 0.2s;
}

.mob-back-btn:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.mob-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
}

/* Sub-menu section groups */
.mob-sub-section {
    border-bottom: 1px solid var(--ink-10);
}

.mob-sub-section-title {
    padding: 14px 20px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: var(--cream);
    border-bottom: 1px solid var(--ink-10);
}

.mob-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 13, 13, 0.04);
    transition: all 0.15s;
    line-height: 1.35;
}

.mob-sub-link:hover {
    background: var(--teal-light);
    color: var(--teal);
    padding-left: 26px;
}

.mob-sub-link.featured {
    font-weight: 600;
    color: var(--teal);
}

.mob-sub-link .mob-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
}

.mob-tag-new {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.mob-tag-hot {
    background: #fde8e6;
    color: var(--red);
}

.mob-tag-pro {
    background: var(--teal-light);
    color: var(--teal);
}

/* Drawer CTA strip */
.mob-drawer-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--ink-10);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-cta-primary {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.mob-cta-primary:hover {
    background: var(--ink);
}

.mob-cta-secondary {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1.5px solid var(--ink-30);
    color: var(--ink);
    font-weight: 500;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.mob-cta-secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .mega-layout.cols-5 {
        grid-template-columns: 220px 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --nav-h: 64px;
    }

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

    .footer-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nl-form {
        max-width: 100%;
        width: 100%;
    }

    /* Hide desktop nav row 2 entirely on mobile */
    .nav-bottom {
        display: none;
    }

    /* Also hide Partner With Us button on mobile — CTA is in drawer */
    .nav-actions .btn-outline {
        display: none;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mega-menu {
        display: none !important;
    }

    .mega-overlay {
        display: none !important;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-top-h: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-top {
        height: 60px;
    }

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

    .announce-bar {
        font-size: 11px;
    }

    .nav-logo-sub {
        display: none;
    }
}