/* =====================================================================
   Truly Coffee — estilos principales
   ===================================================================== */

:root {
	/* Paleta inspirada en A Matter of Concrete */
	--bg: #ffffff;
	--bg-2: #f3f5f7;
	--bg-media: #e6e8ea;
	--bg-dark: #1d1d1b;
	--bg-dark-2: #2a2a28;
	--text: #1d1d1b;
	--text-light: #ffffff;
	--accent: #1d1d1b;
	--accent-lime: #e5fd7f;
	--accent-warm: #e5fd7f;
	--muted: #909090;
	--border: #e9e9e9;
	--border-light: rgba(255, 255, 255, 0.16);
	/* Tipografía: Jost (equivalente libre de Futura PT, como tanat.coffee) */
	--serif: 'Jost', 'Futura', 'Century Gothic', sans-serif;
	--sans: 'Jost', 'Futura', 'Century Gothic', system-ui, sans-serif;
	--mono: 'Jost', 'Futura', 'Century Gothic', sans-serif;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--section: clamp(4rem, 10vw, 8rem);
	--header-h: 72px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.tc-no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.skip-link:focus { position: fixed; top: 1rem; left: 1rem; z-index: 1000; width: auto; height: auto; clip: auto; padding: .75rem 1rem; background: var(--bg-dark); color: var(--text-light); }


/* ---------------------------------------------------------------------
   Tipografía y utilidades
   ------------------------------------------------------------------ */
.tc-container { width: 100%; max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.tc-container--narrow { max-width: 780px; }

.tc-label {
	font-family: var(--mono);
	font-weight: 500;
	font-size: .7rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text);
	margin: 0 0 1rem;
}
.tc-label__num { color: var(--muted); }
.tc-label--light { color: var(--accent-warm); }

.tc-h1, .tc-h2, .tc-h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: .01em; text-transform: uppercase; }
.tc-h1 { font-size: clamp(2.2rem, 5.2vw, 4.25rem); }
.tc-h2 { font-size: clamp(1.7rem, 3.3vw, 2.75rem); }
.tc-h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing: .04em; }
.tc-h1 em, .tc-h2 em { font-style: normal; color: var(--text); background: var(--accent-lime); padding: 0 .15em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.tc-section--dark .tc-h2 em, .tc-hero__title em { background: none; padding: 0; color: var(--accent-lime); font-style: normal; }
.tc-lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 300; line-height: 1.7; max-width: 60ch; }

.tc-btn {
	display: inline-flex; align-items: center; gap: .6rem;
	padding: .95rem 1.6rem;
	font-family: var(--mono); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
	background: var(--bg-dark); color: var(--text-light);
	border: 1px solid var(--bg-dark); border-radius: 0;
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.tc-btn:hover { background: var(--accent-lime); border-color: var(--accent-lime); color: var(--text); }
.tc-btn--light { background: var(--text-light); color: var(--text); border-color: var(--text-light); }
.tc-btn--light:hover { background: var(--accent-lime); border-color: var(--accent-lime); color: var(--text); }
.tc-hero .tc-btn--light { background: var(--accent-lime); border-color: var(--accent-lime); color: var(--text); }
.tc-hero .tc-btn--light:hover { background: var(--text-light); border-color: var(--text-light); }
.tc-btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.tc-btn--ghost:hover { color: var(--bg); background: var(--text); border-color: var(--text); }
.tc-hero .tc-btn--ghost:hover { color: var(--text); background: var(--text-light); border-color: var(--text-light); }

.tc-link {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: var(--mono); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
	position: relative; padding-bottom: .2rem;
}
.tc-link::after { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; transform-origin: right; transition: transform .4s var(--ease); }
.tc-link:hover::after { transform: scaleX(0); transform-origin: left; }
.tc-link svg { transition: transform .3s var(--ease); }
.tc-link:hover svg { transform: translateX(4px); }

.tc-badge {
	display: inline-block; padding: .35rem .6rem;
	font-family: var(--mono); font-weight: 500; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
	background: var(--accent-lime); color: var(--text); border-radius: 0;
}
.tc-badge--sale { background: var(--bg-dark); color: var(--text-light); }
.tc-badge--muted { background: var(--muted); color: var(--bg); }

.tc-section { padding: var(--section) 0; }
.tc-section--tight { padding-top: 0; }
.tc-section--dark { background: var(--bg-dark); color: var(--text-light); }
.tc-section--dark .tc-label { color: var(--accent-warm); }
.tc-section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); flex-wrap: wrap; }
.tc-section__head .tc-h2 { max-width: 16ch; }
.tc-section__intro { max-width: 44ch; font-weight: 300; color: var(--muted); margin: 0; }
.tc-section--dark .tc-section__intro { color: rgba(255,255,255,.65); }
.tc-empty { padding: 3rem; border: 1px solid var(--border); text-align: center; color: var(--muted); }

/* Reveal */
.tc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.tc-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .tc-reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------------------------------------------------------------------
   Barra de anuncio
   ------------------------------------------------------------------ */
.tc-announce { background: var(--bg-dark); color: var(--text-light); overflow: hidden; font-family: var(--mono); font-weight: 500; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; padding: .55rem 0; }
.tc-announce__track { display: flex; gap: 4rem; width: max-content; animation: tc-marquee 40s linear infinite; }
.tc-announce__track span { white-space: nowrap; }
.tc-has-overlay-header .tc-announce { position: relative; z-index: 99; }

/* ---------------------------------------------------------------------
   Header
   ------------------------------------------------------------------ */
.tc-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--bg); border-bottom: 1px solid var(--border);
	transition: background .3s, border-color .3s;
}
.tc-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: var(--header-h); padding: 0 var(--gutter); max-width: 1440px; margin: 0 auto; }
.tc-header__brand { flex: 0 0 auto; }
.tc-logo { display: block; }
.tc-logo__img { height: 42px; width: auto; }
.tc-logo__img--light { display: none; }
.custom-logo { height: 42px; width: auto; }

.tc-header__nav { flex: 1; display: flex; justify-content: center; }
.tc-menu { display: flex; gap: 2.25rem; }
.tc-menu > li { position: relative; }
.tc-menu a { font-family: var(--mono); font-weight: 500; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; position: relative; padding: .5rem 0; }
.tc-menu a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: currentColor; transition: width .3s var(--ease); }
.tc-menu a:hover::after, .tc-menu .current-menu-item > a::after { width: 100%; }
.tc-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 180px; padding: .75rem 0; background: var(--bg); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s var(--ease); }
.tc-menu > li:hover .sub-menu, .tc-menu > li:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.tc-menu .sub-menu a { display: block; padding: .5rem 1.25rem; color: var(--text); }
.tc-menu .sub-menu a::after { display: none; }

.tc-header__tools { display: flex; align-items: center; gap: 1rem; }
.tc-header__marker { font-family: var(--mono); font-weight: 500; font-size: .62rem; letter-spacing: .12em; opacity: .5; text-transform: uppercase; }
.tc-header__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 0; background: transparent; border: 0; color: inherit; transition: background .2s; position: relative; }
.tc-header__icon:hover { background: rgba(26,23,20,.06); }
.tc-cart__count { position: absolute; top: 4px; right: 2px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 0; background: var(--accent-lime); color: var(--text); font-family: var(--mono); font-weight: 600; font-size: .58rem; line-height: 16px; text-align: center; display: none; }
.tc-cart__count.is-active { display: block; }
.tc-cart.is-bump { animation: tc-bump .5s var(--ease); }
@keyframes tc-bump { 30% { transform: scale(1.25); } }
.tc-burger { display: none; }

/* Header transparente sobre el hero de la portada */
.tc-header--overlay { position: absolute; top: var(--announce-h, 0px); left: 0; right: 0; background: transparent; border-color: transparent; color: var(--text-light); }
.tc-header--overlay .tc-logo__img--dark { display: none; }
.tc-header--overlay .tc-logo__img--light { display: block; }
.tc-header--overlay .tc-header__icon:hover { background: rgba(245,240,235,.12); }
.tc-header--overlay .tc-menu .sub-menu { background: var(--bg-dark); border-color: var(--border-light); }
.tc-header--overlay .tc-menu .sub-menu a { color: var(--text-light); }
.tc-header--overlay.is-scrolled { position: fixed; top: 0; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-color: var(--border); color: var(--text); animation: tc-slide-down .35s var(--ease); }
@keyframes tc-slide-down { from { transform: translateY(-100%); } to { transform: none; } }
.tc-header--overlay.is-scrolled .tc-logo__img--dark { display: block; }
.tc-header--overlay.is-scrolled .tc-logo__img--light { display: none; }
.tc-header--overlay.is-scrolled .tc-menu .sub-menu { background: var(--bg); border-color: var(--border); }
.tc-header--overlay.is-scrolled .tc-menu .sub-menu a { color: var(--text); }

/* Menú móvil */
.tc-mobile { position: fixed; inset: 0; z-index: 200; background: var(--bg-dark); color: var(--text-light); display: flex; flex-direction: column; padding: 1.25rem var(--gutter) 2rem; opacity: 0; transform: translateY(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.tc-mobile.is-open { opacity: 1; transform: none; }
.tc-mobile__top { display: flex; justify-content: space-between; align-items: center; height: var(--header-h); }
.tc-mobile__brand { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.tc-mobile__nav { flex: 1; display: flex; align-items: center; }
.tc-mobile__menu > li > a { display: block; font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .02em; font-size: clamp(1.9rem, 7vw, 3rem); line-height: 1.2; padding: .25rem 0; }
.tc-mobile__menu .sub-menu { padding: .25rem 0 .75rem 1rem; }
.tc-mobile__menu .sub-menu a { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; display: block; padding: .35rem 0; opacity: .7; }
.tc-mobile__foot { display: flex; flex-wrap: wrap; gap: 1.5rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; border-top: 1px solid var(--border-light); padding-top: 1.5rem; }
.tc-mobile__foot a:hover { opacity: 1; }

/* Búsqueda */
.tc-search { position: fixed; inset: 0; z-index: 210; background: rgba(26,23,20,.96); color: var(--text-light); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.tc-search.is-open { opacity: 1; }
.tc-search__close { position: absolute; top: 1.25rem; right: var(--gutter); }
.tc-search__inner { width: min(720px, 90vw); }
.tc-search .tc-label { color: var(--accent-warm); }
.tc-searchform { display: flex; gap: .5rem; border-bottom: 1px solid currentColor; }
.tc-searchform input { flex: 1; background: transparent; border: 0; color: inherit; font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 2.2rem); padding: .5rem 0; outline: none; min-width: 0; }
.tc-searchform input::placeholder { color: inherit; opacity: .35; }
.tc-searchform button { background: transparent; border: 0; color: inherit; padding: 0 .5rem; }

/* ---------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */
.tc-hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem; background: var(--bg-dark); color: var(--text-light); overflow: hidden; }
.tc-hero__bg { position: absolute; inset: 0; }
.tc-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,23,20,.25) 0%, rgba(26,23,20,.1) 40%, rgba(26,23,20,.7) 100%); }
.tc-hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: tc-zoom 24s ease-in-out infinite alternate; }
@keyframes tc-zoom { to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .tc-hero__img { animation: none; } }
.tc-hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: end; max-width: 1440px; margin: 0 auto; width: 100%; }
.tc-hero__title { font-family: var(--serif); font-weight: 600; text-transform: uppercase; font-size: clamp(3rem, 9.5vw, 8rem); line-height: .95; letter-spacing: .02em; display: flex; flex-direction: column; }
.tc-hero__aside { max-width: 44ch; }
.tc-hero__badge { display: inline-block; font-family: var(--mono); font-weight: 500; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text); background: var(--accent-lime); padding: .35rem .6rem; margin-bottom: 1.25rem; }
.tc-hero__text { font-size: clamp(1rem, 1.3vw, 1.2rem); font-weight: 300; line-height: 1.7; margin-bottom: 1.75rem; }
.tc-hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.tc-hero__scroll { position: absolute; right: var(--gutter); bottom: 3rem; z-index: 2; font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; opacity: .5; writing-mode: vertical-rl; }

/* Marquee */
.tc-marquee { background: var(--accent-lime); color: var(--text); overflow: hidden; padding: .9rem 0; font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; font-size: clamp(.9rem, 1.4vw, 1.15rem); }
.tc-marquee__track { display: flex; align-items: center; gap: 2.5rem; width: max-content; animation: tc-marquee 50s linear infinite; }
.tc-marquee__track span { white-space: nowrap; }
.tc-marquee__track i { font-style: normal; font-size: .6em; opacity: .6; }
@keyframes tc-marquee { to { transform: translateX(-33.333%); } }
.tc-announce__track { animation-name: tc-announce; }
@keyframes tc-announce { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------------
   Grid de productos
   ------------------------------------------------------------------ */
.tc-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1rem, 2vw, 1.75rem); margin: 0; padding: 0; list-style: none; }
.tc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tc-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tc-card { display: flex; flex-direction: column; position: relative; }
.tc-card__media { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-media); }
.tc-card__tag { position: absolute; top: 0; right: 0; z-index: 2; writing-mode: vertical-rl; padding: .8rem .4rem; background: var(--accent-lime); color: var(--text); font-family: var(--mono); font-weight: 500; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.tc-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .5s var(--ease); }
.tc-card__img--alt { opacity: 0; }
.tc-card:hover .tc-card__img--main { transform: scale(1.04); }
.tc-card:hover .tc-card__img--alt { opacity: 1; transform: scale(1.02); }
.tc-card__badges { position: absolute; top: .75rem; left: .75rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.tc-card__body { padding: 1rem 0 0; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.tc-card__meta { font-family: var(--mono); font-weight: 500; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0; display: flex; gap: .75rem; flex-wrap: wrap; }
.tc-card__lot { color: var(--text); }
.tc-card__title { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; line-height: 1.35; }
.tc-card__title a::after { content: ''; position: absolute; inset: 0; }
.tc-card__notes { font-size: .9rem; font-weight: 300; color: var(--muted); margin: 0; }
.tc-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: auto; padding-top: .75rem; }
.tc-card__price { font-family: var(--mono); font-weight: 500; font-size: .85rem; font-variant-numeric: tabular-nums; }
.tc-card__price del { color: var(--muted); font-size: .75rem; margin-right: .4rem; }
.tc-card__price ins { text-decoration: none; }
.tc-card .button { position: relative; z-index: 2; font-family: var(--mono); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; background: transparent; border: 1px solid var(--text); border-radius: 0; padding: .55rem 1rem; color: var(--text); transition: all .25s; line-height: 1.2; }
.tc-card .button:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.tc-card .button.loading { opacity: .5; }
.tc-card .added_to_cart { position: relative; z-index: 2; font-family: var(--mono); font-weight: 500; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-left: .5rem; }

/* Categorías */
.tc-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tc-cat { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-dark); color: var(--text-light); }
.tc-cat img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: transform 1s var(--ease), opacity .5s; }
.tc-cat:hover img { transform: scale(1.05); opacity: .55; }
.tc-cat__body { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, transparent 40%, rgba(26,23,20,.7)); }
.tc-cat__count { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.tc-cat__name { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(1.1rem, 1.8vw, 1.6rem); display: flex; align-items: center; gap: .75rem; }

/* ---------------------------------------------------------------------
   Historia
   ------------------------------------------------------------------ */
.tc-story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.tc-story__media { position: relative; }
.tc-story__media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.tc-story__caption { position: absolute; left: 1rem; bottom: 1rem; font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); background: rgba(26,23,20,.6); padding: .5rem .75rem; }
.tc-story__body .tc-h2 { margin-bottom: 1.5rem; }
.tc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.tc-stat__num { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1; }
.tc-stat__label { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Lo que servimos */
.tc-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border-light); border-left: 1px solid var(--border-light); }
.tc-menu-item { padding: 2rem; border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); transition: background .3s; }
.tc-menu-item:hover { background: var(--bg-dark-2); }
.tc-menu-item__num { font-family: var(--mono); font-weight: 500; font-size: .65rem; color: var(--accent-lime); letter-spacing: .12em; display: block; margin-bottom: 1.5rem; }
.tc-menu-item h3 { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; margin-bottom: .75rem; }
.tc-menu-item p { font-weight: 300; color: rgba(255,255,255,.65); margin: 0; font-size: .95rem; }

/* Galería */
.tc-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 1rem; }
.tc-gallery__item { margin: 0; position: relative; overflow: hidden; background: var(--bg-media); }
.tc-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tc-gallery__item:hover img { transform: scale(1.04); }
.tc-gallery__item figcaption { position: absolute; left: 1rem; bottom: 1rem; font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); background: rgba(26,23,20,.6); padding: .45rem .7rem; }
.tc-gallery__item--1 { grid-column: span 2; grid-row: span 2; }
.tc-gallery__item--4 { grid-column: span 2; }

/* Premio */
.tc-award { background: var(--bg-dark); color: var(--text-light); padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--border-light); }
.tc-award__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 5vw, 5rem); align-items: center; }
.tc-award__num { font-family: var(--serif); font-weight: 600; color: var(--accent-lime); font-size: clamp(5rem, 14vw, 12rem); line-height: .85; letter-spacing: -0.02em; }
.tc-award__title { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .03em; font-size: clamp(1.2rem, 2.2vw, 1.9rem); margin-bottom: .75rem; }
.tc-award p { font-weight: 300; max-width: 60ch; opacity: .85; margin: 0; }

/* Visítanos */
.tc-visit .tc-h1 { margin-bottom: 3rem; }
.tc-visit__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.tc-visit__grid p { font-weight: 300; line-height: 1.8; }
.tc-visit__grid a:hover { background: var(--accent-lime); }

/* ---------------------------------------------------------------------
   Newsletter y footer
   ------------------------------------------------------------------ */
.tc-newsletter { background: var(--bg-dark); color: var(--text-light); padding: clamp(3rem, 7vw, 6rem) 0; border-bottom: 1px solid var(--border-light); }
.tc-newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.tc-newsletter__text { font-weight: 300; opacity: .7; margin-top: 1rem; }
.tc-newsletter__form { display: flex; gap: .5rem; border-bottom: 1px solid var(--border-light); padding-bottom: .5rem; }
.tc-newsletter__form input[type="email"] { flex: 1; background: transparent; border: 0; color: inherit; font-family: var(--sans); font-size: 1.1rem; padding: .75rem 0; outline: none; min-width: 0; }
.tc-newsletter__form input::placeholder { color: inherit; opacity: .4; }
.tc-hp { position: absolute; left: -9999px; }
.tc-newsletter__msg { font-family: var(--mono); font-weight: 500; font-size: .68rem; letter-spacing: .1em; color: var(--accent-lime); margin-top: 1rem; }

.tc-footer { background: var(--bg-dark); color: var(--text-light); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.tc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-light); }
.tc-footer__logo { width: 160px; margin-bottom: 1.25rem; }
.tc-footer__brand p { font-weight: 300; opacity: .7; max-width: 30ch; }
.tc-footer__social { display: flex; gap: 1.25rem; font-family: var(--mono); font-weight: 500; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.tc-footer__social a:hover { color: var(--accent-lime); }
.tc-footer__col h3 { font-family: var(--mono); font-weight: 500; font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-lime); margin-bottom: 1.25rem; }
.tc-footer__col li { margin-bottom: .5rem; font-weight: 300; }
.tc-footer__col a:hover { color: var(--accent-lime); }
.tc-footer__visit p { font-weight: 300; line-height: 1.8; opacity: .85; }
.tc-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-family: var(--mono); font-weight: 500; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.tc-footer__legal { display: flex; gap: 1.5rem; }

.tc-wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: transform .3s var(--ease); }
.tc-wa-float:hover { transform: translateY(-3px); }
.tc-wa-float svg { width: 26px; height: 26px; }

/* ---------------------------------------------------------------------
   Páginas, blog, prosa
   ------------------------------------------------------------------ */
.tc-page-head { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem); }
.tc-page-head .tc-lead { margin-top: 1rem; }
.tc-page-head .tc-searchform { max-width: 520px; margin-top: 1.5rem; }
.tc-page-head .tc-searchform input { font-size: 1.35rem; }
.tc-404 { text-align: center; padding-bottom: var(--section); }
.tc-404 .tc-lead, .tc-404 .tc-searchform { margin-left: auto; margin-right: auto; }
.tc-404 .tc-btn { margin-top: 2rem; }

.tc-article__hero { margin: 0 0 3rem; }
.tc-article__hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tc-prose { padding-bottom: var(--section); font-size: 1.05rem; font-weight: 300; line-height: 1.8; }
.tc-prose h2, .tc-prose h3, .tc-prose h4 { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: .03em; margin: 2em 0 .6em; line-height: 1.15; }
.tc-prose h2 { font-size: 1.6rem; } .tc-prose h3 { font-size: 1.2rem; }
.tc-prose a { text-decoration: underline; text-underline-offset: 3px; }
.tc-prose a:hover { background: var(--accent-lime); }
.tc-prose ul, .tc-prose ol { padding-left: 1.5rem; margin: 0 0 1.5em; }
.tc-prose ul { list-style: disc; } .tc-prose ol { list-style: decimal; }
.tc-prose blockquote { margin: 2em 0; padding-left: 1.5rem; border-left: 2px solid var(--text); font-family: var(--serif); font-size: 1.25rem; font-weight: 300; }
.tc-prose img, .tc-prose figure { margin: 2em 0; }
.tc-prose .alignwide { margin-left: -10vw; margin-right: -10vw; max-width: none; width: auto; }
.tc-prose .wp-block-button__link { border-radius: 0; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; background: var(--bg-dark); }

.tc-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.75rem; }
.tc-post__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-media); }
.tc-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tc-post:hover .tc-post__media img { transform: scale(1.04); }
.tc-post__body { padding-top: 1rem; }
.tc-post__body .tc-h3 { margin-bottom: .5rem; }
.tc-post__body p { font-weight: 300; color: var(--muted); }
.tc-pagination { margin-top: 3rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; }
.tc-pagination .nav-links { display: flex; gap: .5rem; }
.tc-pagination .page-numbers { padding: .5rem .9rem; border: 1px solid var(--border); border-radius: 0; }
.tc-pagination .page-numbers.current { background: var(--text); color: var(--bg); }
.tc-post-nav { display: flex; justify-content: space-between; gap: 2rem; padding: 2rem 0 var(--section); border-top: 1px solid var(--border); font-family: var(--serif); font-weight: 500; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; }
.tc-tags a { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--border); border-radius: 0; padding: .3rem .7rem; margin-right: .3rem; }
.tc-comments { padding-bottom: var(--section); }
.tc-comments__list { list-style: none; padding: 0; }
.tc-comments .comment { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.tc-comments .comment-form label { display: block; font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem; }
.tc-comments .comment-form input:not([type="submit"]):not([type="checkbox"]), .tc-comments .comment-form textarea { width: 100%; padding: .75rem; border: 1px solid var(--border); background: transparent; font: inherit; }
.tc-comments .comment-form input[type="submit"] { border-radius: 0; padding: .9rem 1.5rem; background: var(--bg-dark); color: var(--bg); border: 0; font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1100px) {
	.tc-grid--4 { grid-template-columns: repeat(3, 1fr); }
	.tc-footer__grid { grid-template-columns: 1fr 1fr; }
	.tc-visit__grid { grid-template-columns: repeat(2, 1fr); }
	.tc-header__marker { display: none; }
}
@media (max-width: 900px) {
	.tc-header__nav { display: none; }
	.tc-burger { display: inline-flex; }
	.tc-hero__content { grid-template-columns: 1fr; gap: 2.5rem; }
	.tc-hero__scroll { display: none; }
	.tc-grid--3, .tc-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.tc-cats { grid-template-columns: 1fr; }
	.tc-cat { aspect-ratio: 2 / 1; }
	.tc-story__grid { grid-template-columns: 1fr; }
	.tc-menu-grid { grid-template-columns: repeat(2, 1fr); }
	.tc-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
	.tc-gallery__item--1 { grid-column: span 2; grid-row: span 1; }
	.tc-award__inner { grid-template-columns: 1fr; }
	.tc-newsletter__inner { grid-template-columns: 1fr; gap: 2rem; }
	.tc-posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	:root { --header-h: 64px; }
	.tc-logo__img, .custom-logo { height: 34px; }
	.tc-grid--3, .tc-grid--4 { grid-template-columns: 1fr 1fr; gap: 1.5rem .75rem; }
	.tc-card__foot { flex-direction: column; align-items: flex-start; gap: .5rem; }
	.tc-menu-grid { grid-template-columns: 1fr; }
	.tc-stats { grid-template-columns: 1fr 1fr; }
	.tc-visit__grid { grid-template-columns: 1fr; }
	.tc-footer__grid { grid-template-columns: 1fr; }
	.tc-posts { grid-template-columns: 1fr; }
	.tc-newsletter__form { flex-direction: column; border: 0; }
	.tc-newsletter__form input[type="email"] { border-bottom: 1px solid var(--border-light); }
	.tc-wa-float { right: .9rem; bottom: .9rem; width: 46px; height: 46px; }
}

/* ---------------------------------------------------------------------
   Ajustes de peso tipográfico (Jost)
   ------------------------------------------------------------------ */
.tc-hero__scroll, .tc-stat__label, .tc-cat__count, .tc-gallery__item figcaption, .tc-story__caption, .tc-mobile__brand, .tc-mobile__foot { font-weight: 500; }
.tc-h1 .tc-label, .tc-page-head .tc-label { margin-bottom: 1.25rem; }
