/* =========================================================
   HOME
   ========================================================= */
.hero {
    padding: 96px 0 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(360px, 480px);
    gap: 72px;
    align-items: center;
}

.hero-content {
    min-width: 0;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 82px;
    line-height: 0.94;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    max-width: 12.8ch;
    color: var(--color-charcoal);
    text-wrap: balance;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 34ch;
    margin-bottom: 34px;
    color: var(--color-text-secondary);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    justify-self: end;
    z-index: 1;
}

.hero-image-container::after {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    background: var(--color-gold-soft);
    z-index: -1;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-soft);
    background: #e9e1d0;
}

.home-shortcuts-section {
    padding-bottom: 96px;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    border-top: 1px solid var(--color-line);
    padding-top: 36px;
}

.shortcut-card {
    background: var(--color-surface);
    padding: 38px 34px;
    border: 1px solid var(--color-line);
    transition: var(--transition);
    min-height: 100%;
}

.shortcut-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.shortcut-card h3 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--color-charcoal);
}

.shortcut-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.75;
}

.featured-section {
    background: var(--color-charcoal-2);
    color: #fff;
    padding: 96px 0;
}

.featured-section .kicker {
    color: var(--color-gold-soft);
}

.sect-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 46px;
}

.sect-header-simple {
    margin-bottom: 34px;
}

.sect-title {
    font-size: 46px;
    line-height: 1.06;
    color: var(--color-charcoal);
}

.sect-title-light {
    color: #fff;
}

.featured-link,
.featured-dark-link {
    color: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: 30px;
}

.main-featured {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #0d1117;
}

.main-featured-media {
    display: block;
    width: 100%;
    height: 100%;
}

.main-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.main-featured:hover img {
    transform: scale(1.03);
}

.featured-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 42px;
    background: linear-gradient(180deg, rgba(12, 15, 19, 0) 0%, rgba(12, 15, 19, 0.92) 68%);
}

.featured-info h3 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.featured-info h3 a,
.featured-card-title a,
.article-card h3 a {
    text-decoration: none;
    color: #ffffff;
}

.featured-summary {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
    max-width: 54ch;
}

.featured-summary-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.side-featured {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

.side-featured .card {
    background: var(--color-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
}

.featured-card-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.categories-section {
    padding: 112px 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-line);
}

.cat-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 15%, rgba(0, 0, 0, 0.68) 100%);
    pointer-events: none;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: var(--transition);
}

.cat-card:hover img {
    transform: scale(1.05);
    opacity: 0.74;
}

.cat-card .name {
    position: absolute;
    left: 22px;
    bottom: 22px;
    transform: none;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.1;
    color: #fff;
    white-space: normal;
    z-index: 2;
    max-width: calc(100% - 44px);
}

.collector-band {
    background: var(--color-bg-soft);
    color: var(--color-text);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    padding: 86px 0;
    text-align: center;
}

.collector-band-inner {
    max-width: 920px;
}

.collector-band .kicker {
    margin-bottom: 18px;
}

.collector-band h2 {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--color-charcoal);
}

.collector-band p {
    font-size: 19px;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 30px;
    color: var(--color-text-secondary);
}

.collector-band-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px 24px;
    flex-wrap: wrap;
}

.latest-section {
    padding: 104px 0;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.article-thumb {
    display: block;
    text-decoration: none;
}

.article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.article-card-body {
    padding: 28px 26px 30px;
}

.article-card .kicker {
    margin-bottom: 14px;
}

.article-card h3 {
    font-size: 26px;
    line-height: 1.18;
    margin-bottom: 14px;
    transition: var(--transition);
    color: #070b14;
}
.article-card h3 a{

    color: #070b14;
}

.article-card:hover h3 {
    color: var(--color-gold);
}

.article-summary {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.75;
}
/* =========================
   HOME TOOL SECTION
   ========================= */

.home-tool-section {
	margin-top: 10px;
	margin-bottom: 46px;
}

.home-tool-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 24px;
	padding: 30px;
	border: 1px solid rgba(22, 27, 34, 0.08);
	border-radius: 30px;
	background: linear-gradient(180deg, #f7f3ec 0%, #f3eee6 100%);
	box-shadow: 0 20px 44px rgba(17, 24, 39, 0.06);
	overflow: hidden;
	position: relative;
}

.home-tool-shell::before {
	content: "";
	position: absolute;
	top: -140px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(180, 135, 85, 0.14) 0%, rgba(180, 135, 85, 0) 72%);
	pointer-events: none;
}

.home-tool-copy,
.home-tool-panel {
	position: relative;
	z-index: 1;
}

.home-tool-copy {
	padding: 8px 4px 8px 0;
}

.home-tool-copy h2 {
	margin: 0 0 14px;
	max-width: 12ch;
	line-height: 0.94;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.home-tool-copy p {
	max-width: 62ch;
	margin: 0;
	color: #434b57;
	font-size: 1.03rem;
	line-height: 1.8;
}

.home-tool-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	margin-top: 22px;
}

.home-tool-panel {
	padding: 22px 22px 20px;
	border-radius: 24px;
	background: linear-gradient(180deg, #1d222b 0%, #141920 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 20px 42px rgba(17, 24, 39, 0.18);
}

.home-tool-panel__eyebrow {
	margin: 0 0 14px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #d2a66d;
}

.home-tool-chipline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.home-tool-chipline span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #f5ede2;
	font-size: 0.88rem;
	line-height: 1;
}

.home-tool-examples {
	display: grid;
	gap: 12px;
}

.home-tool-examples article {
	padding: 14px 14px 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
}

.home-tool-examples article::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	border-radius: 16px 0 0 16px;
	background: #b48755;
}

.home-tool-examples strong {
	display: block;
	margin-bottom: 4px;
	color: #fff8ee;
	font-size: 0.98rem;
	font-weight: 700;
}

.home-tool-examples span {
	color: rgba(255, 248, 238, 0.78);
	line-height: 1.6;
	font-size: 0.94rem;
}

@media (max-width: 980px) {
	.home-tool-shell {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.home-tool-copy h2 {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.home-tool-section {
		margin-bottom: 38px;
	}

	.home-tool-shell {
		padding: 20px;
		border-radius: 22px;
	}

	.home-tool-panel {
		padding: 18px;
		border-radius: 18px;
	}

	.home-tool-examples article {
		border-radius: 14px;
	}

	.home-tool-examples article::before {
		border-radius: 14px 0 0 14px;
	}
}
/* =========================================================
   RESPONSIVE HOME
   ========================================================= */
@media (max-width: 1240px) {
    .hero {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, 430px);
        gap: 52px;
    }

    .hero-content h1 {
        font-size: 72px;
        max-width: 12.2ch;
    }

    .sect-title {
        font-size: 42px;
    }
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 72px 0 64px;
    }

    .hero-image-container {
        max-width: 620px;
        width: 100%;
        justify-self: start;
        order: -1;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 58px;
        max-width: 13ch;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 100%;
    }

    .featured-grid,
    .article-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .side-featured {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

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

    .sect-title,
    .sect-title-light {
        font-size: 38px;
    }

    .main-featured {
        min-height: 540px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 56px 0 52px;
        gap: 28px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 0.98;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-image-container::after {
        inset: 16px -16px -16px 16px;
    }

    .shortcut-card {
        padding: 28px 24px;
    }

    .featured-section,
    .categories-section,
    .collector-band,
    .latest-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .featured-info {
        padding: 26px 22px;
    }

    .featured-info h3,
    .featured-card-title,
    .article-card h3 {
        font-size: 24px;
    }

    .sect-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .sect-title,
    .sect-title-light {
        font-size: 32px;
    }

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

    .collector-band h2 {
        font-size: 34px;
    }

    .collector-band p {
        font-size: 17px;
    }

    .article-card-body {
        padding: 22px 20px 24px;
    }
}
.side-featured .card--media{
	overflow: hidden;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.side-featured .card-media{
	display: block;
	aspect-ratio: 16 / 10;
	background: #e9e3d8;
}

.side-featured .card-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.side-featured .card-body{
	padding: 22px 22px 24px;
}

.side-featured .card--news-highlight .card-media{
	aspect-ratio: 16 / 9;
}

.news-focus-section{
	padding: 88px 0 96px;
	background: var(--color-bg-soft);
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.news-focus-grid{
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	gap: 28px;
	align-items: start;
}

.news-main,
.news-mini{
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	overflow: hidden;
	transition: var(--transition);
}

.news-main:hover,
.news-mini:hover{
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
}

.news-main-media{
	display: block;
	aspect-ratio: 16 / 9;
	background: #e9e3d8;
}

.news-main-media img,
.news-mini-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-main-body{
	padding: 28px 28px 30px;
}

.news-main-body h3{
	font-size: 34px;
	line-height: 1.05;
	margin: 12px 0 14px;
}

.news-main-body p{
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text-secondary);
	margin-bottom: 20px;
}

.news-stack{
	display: grid;
	gap: 22px;
}

.news-mini{
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
}

.news-mini-media{
	display: block;
	min-height: 100%;
	background: #e9e3d8;
}

.news-mini-body{
	padding: 18px 18px 20px;
}

.news-mini-body h3{
	font-size: 22px;
	line-height: 1.16;
	margin: 10px 0 10px;
}

.news-mini-body p{
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-text-secondary);
	margin-bottom: 12px;
}

@media (max-width: 1100px){
	.news-focus-grid{
		grid-template-columns: 1fr;
	}

	.news-mini{
		grid-template-columns: 140px minmax(0, 1fr);
	}
}

@media (max-width: 640px){
	.news-focus-section{
		padding: 64px 0 72px;
	}

	.news-main-body{
		padding: 22px 20px 24px;
	}

	.news-main-body h3{
		font-size: 28px;
	}

	.news-mini{
		grid-template-columns: 1fr;
	}

	.news-mini-media{
		aspect-ratio: 16 / 9;
	}

	.news-mini-body{
		padding: 18px 16px 20px;
	}
}

/* =========================================================
   HOME MOBILE POLISH
   Previously loaded as zz-home-mobile-polish.css.
   Kept in the critical home stylesheet because it controls the first viewport on mobile.
   ========================================================= */
@media (max-width: 760px) {
  body.home {
    overflow-x: hidden;
  }

  body.home .container,
  body.home .featured-section > .container,
  body.home .latest-section.container,
  body.home .categories-section.container,
  body.home .home-tool-section.container,
  body.home .home-shortcuts-section.container {
    width: min(100% - 32px, 680px) !important;
    max-width: min(100% - 32px, 680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.home .hero {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 0 54px !important;
    gap: 0 !important;
  }

  body.home .hero-image-container {
    order: 0 !important;
    width: calc(100% + 32px) !important;
    max-width: none !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    justify-self: auto !important;
  }

  body.home .hero-image-container::after {
    display: none !important;
  }

  body.home .hero-image {
    width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    height: auto !important;
    max-height: 360px !important;
    object-fit: cover !important;
    object-position: center 48% !important;
    box-shadow: none !important;
  }

  body.home .hero-content {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 30px !important;
  }

  body.home .hero-content .kicker {
    margin-bottom: 18px !important;
    font-size: 12px !important;
    letter-spacing: .20em !important;
  }

  body.home .hero-content h1 {
    max-width: 100% !important;
    width: 100% !important;
    font-size: clamp(38px, 11vw, 54px) !important;
    line-height: .98 !important;
    letter-spacing: -0.055em !important;
    margin: 0 0 24px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance !important;
  }

  body.home .hero-content p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin: 0 0 30px !important;
  }

  body.home .home-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  body.home .home-hero-actions .btn-premium {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 18px 20px !important;
    font-size: 13px !important;
    letter-spacing: .12em !important;
  }

  body.home .home-hero-actions .secondary-link {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    font-size: 13px !important;
    letter-spacing: .12em !important;
  }

  body.home .shortcuts-grid {
    padding-top: 28px !important;
  }

  body.home .shortcut-card,
  body.home .article-card,
  body.home .cat-card,
  body.home .card,
  body.home .main-featured {
    border-radius: 22px !important;
  }

  body.home .featured-section,
  body.home .categories-section,
  body.home .collector-band,
  body.home .latest-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  body.home .main-featured-media,
  body.home .article-thumb,
  body.home .card-product-media {
    display: block !important;
    width: auto !important;
    min-height: 0 !important;
    margin: 10px 10px 0 !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background: #0f131a !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10) !important;
  }

  body.home .main-featured-media img,
  body.home .article-thumb img,
  body.home .card-product-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    background: transparent !important;
    transform: translateZ(0) !important;
  }

  body.home .main-featured .featured-info,
  body.home .article-card-body,
  body.home .card-product-body {
    padding-top: 26px !important;
  }

  body.home .featured-section .main-featured-media,
  body.home .featured-section .card-product-media {
    background: #111820 !important;
  }

  body.home .latest-section .main-featured-media,
  body.home .latest-section .article-thumb {
    background: #121820 !important;
  }
}

@media (max-width: 390px) {
  body.home .hero-content h1 {
    font-size: clamp(34px, 10.3vw, 42px) !important;
    letter-spacing: -0.052em !important;
  }

  body.home .hero-content p {
    font-size: 17px !important;
  }
}

/* =========================================================
   DESKTOP EDITORIAL LATEST SECTION FIX
   The latest/news block must look like editorial cards, not product cards.
   ========================================================= */
@media (min-width: 981px) {
  body.home .latest-section .main-featured {
    display: grid !important;
    grid-template-rows: auto 1fr !important;
    min-height: 0 !important;
    background: #0d1117 !important;
    border-radius: 34px !important;
    overflow: hidden !important;
  }

  body.home .latest-section .main-featured-media {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: #0d1117 !important;
    overflow: hidden !important;
  }

  body.home .latest-section .main-featured-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  body.home .latest-section .main-featured .featured-info {
    position: relative !important;
    inset: auto !important;
    padding: 34px 38px 38px !important;
    background: linear-gradient(180deg, #111721 0%, #0d1117 100%) !important;
  }

  body.home .latest-section .main-featured .featured-info h3 {
    font-size: clamp(34px, 3vw, 46px) !important;
    line-height: 1.04 !important;
    max-width: 14ch !important;
  }
}
