  :root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e8e8e8;
    --gray-400: #999;
    --gray-600: #555;
    --accent: #c8a96e;
    --accent-light: #f5efe4;
    --red: #cc3333;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ===================== NAV ===================== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
  }

  .nav-logo {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    line-height: 1.1;
  }

  .nav-logo span {
    display: block;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gray-400);
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gray-400); }

  .nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.55rem 1.2rem;
    border: 1.5px solid var(--black);
    transition: background 0.2s, color 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
  }

  /* ===================== HERO ===================== */
  .hero {
    min-height: 100vh;
    padding-top: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1.5px solid var(--black);
    overflow: hidden;
  }

  .hero-content {
    padding: 8% 6% 8% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1.5px solid var(--black);
    position: relative;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 2rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1.5px;
    background: var(--accent);
  }

  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
    max-width: 540px;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 3rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1.5px solid var(--black);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-primary {
    background: var(--black);
    color: var(--white);
  }

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

  .btn-secondary {
    background: var(--white);
    color: var(--black);
  }

  .btn-secondary:hover {
    background: var(--black);
    color: var(--white);
  }

  .btn-accent {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
  }

  .btn-accent:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
  }

  .hero-stats {
    position: absolute;
    bottom: 6%;
    left: 8%;
    display: flex;
    gap: 2.5rem;
  }

  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
  }

  .hero-stat-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    display: block;
    margin-top: -4px;
  }

  .hero-visual {
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-art svg {
    width: 75%;
    max-width: 380px;
    opacity: 0.85;
    animation: floatSvg 5s ease-in-out infinite;
  }

  @keyframes floatSvg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-art-label {
    position: absolute;
    bottom: 8%;
    right: 8%;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
  }

  /* ===================== TICKER ===================== */
  .ticker {
    background: var(--black);
    color: var(--white);
    padding: 0.9rem 0;
    overflow: hidden;
    border-bottom: 1.5px solid var(--black);
    white-space: nowrap;
  }

  .ticker-inner {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
  }

  .ticker-item {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0 3rem;
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
  }

  .ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  @keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ===================== SECTION SHARED ===================== */
  section { position: relative; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.8rem;
  }

  .section-label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--accent);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  /* ===================== CATEGORIES ===================== */
  .categories {
    border-bottom: 1.5px solid var(--black);
  }

  .categories-header {
    padding: 5% 8% 4%;
    border-bottom: 1.5px solid var(--black);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .categories-header-right {
    max-width: 320px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.6;
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .cat-card {
    border-right: 1.5px solid var(--black);
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: var(--black);
  }

  .cat-card:last-child { border-right: none; }

  .cat-card:hover { background: var(--black); }
  .cat-card:hover .cat-icon line,
  .cat-card:hover .cat-icon path,
  .cat-card:hover .cat-icon rect,
  .cat-card:hover .cat-icon circle,
  .cat-card:hover .cat-icon polyline,
  .cat-card:hover .cat-icon polygon { stroke: var(--white); }
  .cat-card:hover .cat-num,
  .cat-card:hover .cat-title,
  .cat-card:hover .cat-desc,
  .cat-card:hover .cat-count { color: var(--white); }
  .cat-card:hover .cat-link { color: var(--accent); }
  .cat-card:hover .cat-arrow { border-color: var(--white); }
  .cat-card:hover .cat-arrow::after { border-color: var(--white); }

  .cat-top { }

  .cat-num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gray-400);
    margin-bottom: 2rem;
    display: block;
  }

  .cat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
  }

  .cat-icon line, .cat-icon path, .cat-icon rect,
  .cat-icon circle, .cat-icon polyline, .cat-icon polygon {
    stroke: var(--black);
    transition: stroke 0.3s;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cat-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    transition: color 0.3s;
  }

  .cat-desc {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
    transition: color 0.3s;
  }

  .cat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
  }

  .cat-count {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    transition: color 0.3s;
  }

  .cat-arrow {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
    flex-shrink: 0;
  }

  .cat-arrow svg line, .cat-arrow svg path {
    stroke: var(--black);
    transition: stroke 0.3s;
  }

  .cat-card:hover .cat-arrow svg line,
  .cat-card:hover .cat-arrow svg path { stroke: var(--white); }

  /* ===================== FEATURED POSTS ===================== */
  .featured {
    border-bottom: 1.5px solid var(--black);
  }

  .featured-header {
    padding: 5% 8% 4%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1.5px solid var(--black);
  }

  .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .post-card {
    border-right: 1.5px solid var(--black);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
    transition: none;
  }

  .post-card:last-child { border-right: none; }

  .post-img {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-bottom: 1.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .post-img-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.4s ease;
  }

  .post-card:hover .post-img-art { transform: scale(1.04); }

  .post-tag {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 0.35rem 0.75rem;
  }

  .post-body {
    padding: 2rem 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .post-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    transition: text-decoration 0.2s;
  }

  .post-card:hover .post-title { text-decoration: underline; }

  .post-teaser {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
  }

  .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
  }

  .post-meta {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
  }

  .post-read-more {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .post-read-more::after {
    content: '→';
    transition: transform 0.2s;
  }

  .post-card:hover .post-read-more::after { transform: translateX(4px); }

  /* ===================== MERCH ===================== */
  .merch {
    border-bottom: 1.5px solid var(--black);
  }

  .merch-header {
    padding: 5% 8% 4%;
    border-bottom: 1.5px solid var(--black);
    background: var(--black);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 3rem;
  }

  .merch-header .section-label { color: var(--accent); }
  .merch-header .section-label::after { background: var(--accent); }
  .merch-header .section-title { color: var(--white); }

  .merch-header-right {
    text-align: right;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 280px;
  }

  .merch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .merch-card {
    border-right: 1.5px solid var(--black);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    group: true;
  }

  .merch-card:last-child { border-right: none; }

  .merch-img {
    aspect-ratio: 3/4;
    background: var(--gray-100);
    border-bottom: 1.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .merch-card:nth-child(2) .merch-img { background: #f0ebe2; }
  .merch-card:nth-child(4) .merch-img { background: #e8e8e8; }
  .merch-card:nth-child(5) .merch-img { background: #1a1a1a; }

  .merch-card:hover .merch-img { background: var(--accent-light); }
  .merch-card:nth-child(5):hover .merch-img { background: #2a2a2a; }

  .merch-product-art {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
  }

  .merch-card:hover .merch-product-art { transform: translateY(-6px); }

  .merch-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 0.25rem 0.55rem;
  }

  .merch-body {
    padding: 1.2rem 1.5rem;
    background: var(--white);
  }

  .merch-type {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.4rem;
  }

  .merch-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }

  .merch-slogan {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .merch-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .merch-price {
    font-size: 0.9rem;
    font-weight: 800;
  }

  .merch-add {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border: 1.5px solid var(--black);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
  }

  .merch-add:hover {
    background: var(--black);
    color: var(--white);
  }

  /* ===================== ABOUT ===================== */
  .about {
    border-bottom: 1.5px solid var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-left {
    padding: 8%;
    border-right: 1.5px solid var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-right {
    background: var(--gray-100);
    padding: 8%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }

  .about-body strong {
    color: var(--black);
    font-weight: 700;
  }

  .about-manifesto {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black);
  }

  .about-value {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.5rem;
  }

  .about-value:last-child { border-bottom: none; padding-bottom: 0; }

  .about-value-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .about-value-title::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--accent);
    display: inline-block;
  }

  .about-value-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
  }

  /* ===================== NEWSLETTER ===================== */
  .newsletter {
    background: var(--black);
    color: var(--white);
    border-bottom: 1.5px solid var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-left {
    padding: 7% 5% 7% 8%;
    border-right: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .newsletter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
  }

  .newsletter-label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--accent);
  }

  .newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }

  .newsletter-title em {
    color: var(--accent);
    font-style: italic;
  }

  .newsletter-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 0;
  }

  .newsletter-right {
    padding: 7% 8% 7% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .newsletter-field label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  .newsletter-field input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
  }

  .newsletter-field input::placeholder { color: rgba(255,255,255,0.25); }
  .newsletter-field input:focus { border-color: var(--accent); }

  .newsletter-submit {
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .newsletter-submit:hover { background: var(--white); }

  .newsletter-promise {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .newsletter-promise::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpolyline points='1,4 3,6 7,2' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  }

  .newsletter-perks {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .newsletter-perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
  }

  .newsletter-perk-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: var(--white);
    border-top: 1.5px solid var(--black);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1.5px solid var(--black);
  }

  .footer-col {
    padding: 4rem 3rem;
    border-right: 1.5px solid var(--black);
  }

  .footer-col:last-child { border-right: none; }
  .footer-col:first-child { padding-left: 8%; }

  .footer-logo {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }

  .footer-tagline {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 260px;
  }

  .footer-socials {
    display: flex;
    gap: 0.8rem;
  }

  .footer-social {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: all 0.2s;
  }

  .footer-social:hover { background: var(--black); color: var(--white); }

  .footer-col-title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--black);
  }

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

  .footer-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.82rem;
    transition: color 0.2s;
    font-weight: 400;
  }

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

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 8%;
    font-size: 0.62rem;
    color: var(--gray-400);
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-bottom-links a {
    text-decoration: none;
    color: var(--gray-400);
    transition: color 0.2s;
  }

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

  /* ===================== QUOTE BANNER ===================== */
  .quote-banner {
    background: var(--accent);
    padding: 5rem 8%;
    border-bottom: 1.5px solid var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin: 0 auto 1rem;
  }

  .quote-attr {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
  }

  .quote-deco-l, .quote-deco-r {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .quote-deco-l { left: 4%; }
  .quote-deco-r { right: 4%; }

  /* ===================== ANIMATIONS ===================== */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .fade-up-delay-4 { transition-delay: 0.4s; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1200px) {
    .merch-grid { grid-template-columns: repeat(3, 1fr); }
    .merch-card:nth-child(3) { border-right: none; }
    .merch-card:nth-child(4) { border-top: 1.5px solid var(--black); }
    .merch-card:nth-child(5) { border-top: 1.5px solid var(--black); border-right: none; }
  }

  @media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-card:nth-child(2) { border-right: none; }
    .cat-card:nth-child(3) { border-top: 1.5px solid var(--black); }
    .cat-card:nth-child(4) { border-top: 1.5px solid var(--black); border-right: none; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .post-card:nth-child(2) { border-right: none; }
    .post-card:last-child { border-top: 1.5px solid var(--black); border-right: none; grid-column: span 2; flex-direction: row; }
    .post-card:last-child .post-img { flex: 0 0 40%; aspect-ratio: auto; border-bottom: none; border-right: 1.5px solid var(--black); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-col:nth-child(2) { border-right: none; }
    .footer-col:nth-child(3) { border-top: 1.5px solid var(--black); }
    .footer-col:last-child { border-top: 1.5px solid var(--black); border-right: none; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; }
    .hero-content { border-right: none; border-bottom: 1.5px solid var(--black); padding: 12% 7% 14%; }
    .hero-visual { min-height: 50vw; }
    .hero-stats { position: static; margin-top: 3rem; }

    .categories-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .categories-header-right { text-align: left; max-width: 100%; }
    .categories-grid { grid-template-columns: 1fr; }
    .cat-card { border-right: none; border-bottom: 1.5px solid var(--black); min-height: auto; }
    .cat-card:last-child { border-bottom: none; }

    .featured-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .posts-grid { grid-template-columns: 1fr; }
    .post-card { border-right: none; border-bottom: 1.5px solid var(--black); }
    .post-card:last-child { grid-column: auto; flex-direction: column; }
    .post-card:last-child .post-img { flex: none; aspect-ratio: 4/3; border-bottom: 1.5px solid var(--black); border-right: none; }

    .merch-header { grid-template-columns: 1fr; gap: 1rem; }
    .merch-header-right { text-align: left; max-width: 100%; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .merch-card { border-bottom: 1.5px solid var(--black); }
    .merch-card:nth-child(odd) { border-right: 1.5px solid var(--black); }
    .merch-card:nth-child(even) { border-right: none; }
    .merch-card:last-child:nth-child(odd) { border-right: none; grid-column: span 2; }

    .about { grid-template-columns: 1fr; }
    .about-left { border-right: none; border-bottom: 1.5px solid var(--black); }

    .newsletter { grid-template-columns: 1fr; }
    .newsletter-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 10% 7%; }
    .newsletter-right { padding: 7% 7% 10%; }

    .footer-main { grid-template-columns: 1fr; }
    .footer-col { border-right: none; border-bottom: 1.5px solid var(--black); padding: 2.5rem 7%; }
    .footer-col:first-child { padding-left: 7%; }
    .footer-col:last-child { border-bottom: none; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  }
