/* =========================================================
   PUNTAL CUBANO · Theme styles
   Editorial Architectural × Gritty Street Style
   ========================================================= */

:root {
	/* Brand (extracted from logo) */
	--pc-navy:        #14305a;
	--pc-navy-deep:   #0b1c30;
	--pc-orange:      #f08020;
	--pc-orange-soft: #ff9a3c;
	--pc-steel:       #6b7280;
	--pc-concrete:    #d8dadc;
	--pc-paper:       #f5f1ea;   /* warm off-white, gritty feel */
	--pc-paper-dim:   #ece6d8;
	--pc-ink:         #14181d;
	--pc-ink-soft:    #45464d;
	--pc-line:        #c6c6cd;

	/* Editorial scale */
	--pc-container: 1280px;
	--pc-gutter:    24px;
	--pc-radius:    4px;
	--pc-radius-lg: 8px;

	--pc-font-display: "Archivo Black", "Montserrat", system-ui, sans-serif;
	--pc-font-head:    "Montserrat", system-ui, sans-serif;
	--pc-font-body:    "Inter", system-ui, sans-serif;

	--pc-shadow-soft:  0 18px 60px -28px rgba(15,23,42,.22);
	--pc-shadow-card:  0 10px 40px -15px rgba(15,23,42,.10);

	--pc-easing: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--pc-font-body);
	font-size: 16px;
	line-height: 1.55;
	color: var(--pc-ink);
	background: var(--pc-paper);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color .25s var(--pc-easing); }
h1,h2,h3,h4,h5,h6 { font-family: var(--pc-font-head); margin: 0; letter-spacing: -.01em; line-height: 1.1; }
p   { margin: 0 0 1em; }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link { position: absolute; left: -9999px; top: 1rem; z-index: 10000; background: var(--pc-navy); color: #fff; padding: .5rem 1rem; }
.skip-link:focus { left: 1rem; }

.pc-container {
	width: 100%;
	max-width: var(--pc-container);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 64px);
}

/* =========================================================
   GLOBAL GRITTY OVERLAYS — film grain + scanlines + vignette
   ========================================================= */
.pc-grain {
	position: fixed; inset: 0; z-index: 9998; pointer-events: none;
	mix-blend-mode: multiply; opacity: .22;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
	background-size: 220px 220px;
}
@keyframes pc-grain {
	0%   { transform: translate(0,0); }
	20%  { transform: translate(-3%,2%); }
	40%  { transform: translate(2%,-3%); }
	60%  { transform: translate(-2%,-2%); }
	80%  { transform: translate(3%,1%); }
	100% { transform: translate(0,0); }
}
.pc-scanlines {
	position: fixed; inset: 0; z-index: 9997; pointer-events: none;
	background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,.04) 2px 3px);
	mix-blend-mode: multiply; opacity: .35;
}
.pc-vignette {
	position: fixed; inset: 0; z-index: 9996; pointer-events: none;
	background: radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(0,0,0,.35) 100%);
}

/* Brand accent SVG (zigzag) */
.pc-accent { width: 70px; height: 14px; color: var(--pc-orange); }

/* =========================================================
   HEADER
   ========================================================= */
.pc-header {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(245,241,234,.78);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid rgba(20,24,29,.08);
	transition: background .3s var(--pc-easing), transform .35s var(--pc-easing);
}
.pc-header.is-scrolled { background: rgba(245,241,234,.96); }
.pc-header.is-hidden   { transform: translateY(-100%); }

.pc-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	height: 104px;
	gap: 32px;
}

.pc-logo {
	display: inline-flex; align-items: center;
	flex-shrink: 0;
	transition: transform .35s var(--pc-easing);
}
.pc-logo:hover { transform: scale(1.04); }
.pc-logo img,
.pc-logo .custom-logo {
	height: 64px;
	width: auto;
	display: block;
	max-width: none;
	filter: drop-shadow(0 4px 14px rgba(20,48,90,.18));
}
@media (max-width: 720px) {
	.pc-header__inner { height: 88px; }
	.pc-logo img, .pc-logo .custom-logo { height: 50px; }
}

.pc-nav { flex: 1; }
.pc-nav__list {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 36px; justify-content: center;
}
.pc-nav__list a {
	font-family: var(--pc-font-body);
	font-size: 12px; font-weight: 600;
	text-transform: uppercase; letter-spacing: .14em;
	color: var(--pc-ink-soft);
	position: relative; padding: 6px 0;
}
.pc-nav__list a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px; background: var(--pc-orange);
	transform: scaleX(0); transform-origin: left;
	transition: transform .35s var(--pc-easing);
}
.pc-nav__list a:hover,
.pc-nav__list .current-menu-item > a { color: var(--pc-navy); }
.pc-nav__list a:hover::after,
.pc-nav__list .current-menu-item > a::after { transform: scaleX(1); }

.pc-header__actions { display: flex; align-items: center; gap: 14px; }
.pc-icon-btn {
	width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
	color: var(--pc-ink); border-radius: 999px; position: relative;
	transition: background .25s var(--pc-easing), color .25s var(--pc-easing);
}
.pc-icon-btn:hover { background: rgba(20,48,90,.08); color: var(--pc-navy); }
.pc-cart__count {
	position: absolute; top: 4px; right: 4px;
	min-width: 18px; height: 18px; padding: 0 5px;
	background: var(--pc-orange); color: #fff;
	font-size: 10px; font-weight: 700; line-height: 18px; text-align: center;
	border-radius: 999px;
}
.pc-cta {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--pc-navy-deep); color: #fff;
	padding: 12px 22px;
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em;
	border-radius: var(--pc-radius);
	transition: transform .25s var(--pc-easing), background .25s var(--pc-easing);
}
.pc-cta:hover { background: var(--pc-orange); transform: translateY(-1px); }
.pc-cta__arrow { transition: transform .3s var(--pc-easing); }
.pc-cta:hover .pc-cta__arrow { transform: translateX(4px); }

.pc-burger {
	display: none; width: 40px; height: 40px; padding: 8px; border: 0; background: none; cursor: pointer;
	flex-direction: column; justify-content: space-between;
}
.pc-burger span { display: block; height: 2px; background: var(--pc-ink); transition: transform .3s var(--pc-easing), opacity .3s; }
.pc-burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.pc-burger.is-open span:nth-child(2) { opacity: 0; }
.pc-burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 960px) {
	.pc-nav {
		position: fixed; inset: 104px 0 auto 0;
		background: var(--pc-paper);
		transform: translateY(-110%); transition: transform .4s var(--pc-easing);
		border-bottom: 1px solid var(--pc-line);
		padding: 24px 0;
	}
	.pc-nav.is-open { transform: translateY(0); }
	.pc-nav__list { flex-direction: column; gap: 18px; padding: 0 32px; }
	.pc-burger { display: flex; }
	.pc-cta { display: none; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.pc-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 16px 32px;
	font-family: var(--pc-font-body); font-size: 12px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .18em;
	border-radius: var(--pc-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .25s var(--pc-easing), background .25s var(--pc-easing), color .25s var(--pc-easing), border-color .25s var(--pc-easing);
}
.pc-btn:active { transform: scale(.97); }
.pc-btn--primary   { background: #fff; color: var(--pc-ink); }
.pc-btn--primary:hover { background: var(--pc-orange); color: #fff; }
.pc-btn--secondary { background: var(--pc-orange); color: #fff; }
.pc-btn--secondary:hover { background: var(--pc-navy); }
.pc-btn--ghost     { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.pc-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.pc-hero {
	position: relative;
	min-height: 100vh;
	display: flex; align-items: center;
	overflow: hidden;
	padding-top: 120px; padding-bottom: 80px;
	background: var(--pc-navy-deep);
	isolation: isolate;
}
.pc-hero__media {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(120% 80% at 20% 10%, rgba(240,128,32,.18) 0%, transparent 55%),
		radial-gradient(120% 80% at 80% 90%, rgba(20,48,90,.55) 0%, transparent 60%),
		linear-gradient(135deg, #0b1c30 0%, #14305a 60%, #0b1c30 100%);
}
.pc-hero__media::after {
	content: "";
	position: absolute; inset: 0;
	background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(0,0,0,.10) 3px 4px);
	pointer-events: none;
}
.pc-hero__inner {
	position: relative; z-index: 2;
	color: #fff;
	max-width: 900px;
}
.pc-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .25em;
	color: var(--pc-orange);
	margin-bottom: 24px;
}
.pc-hero__title {
	font-family: var(--pc-font-display);
	font-size: clamp(48px, 9vw, 120px);
	line-height: .9;
	letter-spacing: -.03em;
	margin: 0 0 28px;
	text-transform: uppercase;
}
.pc-hero__title .pc-word { display: block; }
.pc-hero__title .pc-word--accent { color: var(--pc-orange); }
.pc-hero__title .pc-word--outline {
	color: transparent;
	-webkit-text-stroke: 2px #fff;
	text-stroke: 2px #fff;
}
.pc-hero__lede {
	font-size: clamp(16px, 1.4vw, 20px);
	color: rgba(255,255,255,.85);
	max-width: 560px;
	margin-bottom: 36px;
}
.pc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Static info strip at hero bottom — sustituye al ticker animado */
.pc-hero__strip {
	position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
	background: var(--pc-orange);
	color: var(--pc-navy-deep);
	border-top: 1px solid rgba(11,28,48,.15);
}
.pc-hero__strip-inner {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 14px 22px;
	padding: 14px 24px;
	font-family: var(--pc-font-body);
	font-size: 12px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .22em;
}
.pc-hero__strip-inner span { white-space: nowrap; }
.pc-hero__strip-inner i { color: var(--pc-navy); font-style: normal; opacity: .55; }
@media (max-width: 720px) {
	.pc-hero__strip-inner { font-size: 11px; letter-spacing: .16em; gap: 10px 14px; padding: 12px 16px; }
}

.pc-hero__ticker {
	position: absolute; bottom: 0; left: 0; right: 0;
	background: var(--pc-orange);
	color: var(--pc-navy-deep);
	font-family: var(--pc-font-display);
	font-size: 14px; text-transform: uppercase; letter-spacing: .25em;
	padding: 14px 0;
	overflow: hidden;
	border-top: 1px solid rgba(0,0,0,.2);
	border-bottom: 1px solid rgba(0,0,0,.2);
}
.pc-hero__ticker-track {
	display: inline-flex; gap: 28px; white-space: nowrap;
	animation: pc-marquee 40s linear infinite;
}
.pc-hero__ticker-track i { color: var(--pc-navy-deep); font-style: normal; }
@keyframes pc-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* Kinetic typography reveal */
[data-pc-kinetic] .pc-word {
	opacity: 0;
	transform: translateY(60%) skewY(6deg);
	transition: opacity .9s var(--pc-easing), transform .9s var(--pc-easing);
}
[data-pc-kinetic].is-revealed .pc-word { opacity: 1; transform: translateY(0) skewY(0); }
[data-pc-kinetic] .pc-word:nth-child(2) { transition-delay: .12s; }
[data-pc-kinetic] .pc-word:nth-child(3) { transition-delay: .24s; }

/* =========================================================
   SECTIONS
   ========================================================= */
.pc-section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.pc-section__head {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
	margin-bottom: 64px; flex-wrap: wrap;
}
.pc-section__head--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.pc-section__title {
	font-size: clamp(32px, 4.2vw, 56px);
	color: var(--pc-navy-deep);
	margin: 0;
	font-weight: 700;
}
.pc-section__lede { color: var(--pc-ink-soft); max-width: 520px; margin-top: 12px; }
.pc-section__more {
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
	color: var(--pc-navy-deep); border-bottom: 1px solid var(--pc-navy-deep); padding-bottom: 4px;
}
.pc-section__more:hover { color: var(--pc-orange); border-bottom-color: var(--pc-orange); }

/* =========================================================
   BENTO GRID
   ========================================================= */
.pc-bento-section { background: #fff; }
.pc-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--pc-gutter);
}
.pc-bento__cell {
	grid-column: span 12;
	background: var(--pc-paper);
	border: 1px solid var(--pc-line);
	box-shadow: var(--pc-shadow-card);
	overflow: hidden;
	position: relative;
	transition: transform .5s var(--pc-easing), box-shadow .5s var(--pc-easing);
	transform-style: preserve-3d;
}
.pc-bento__cell:hover { box-shadow: var(--pc-shadow-soft); }
.pc-bento__cell--wide   { grid-column: span 8; }
.pc-bento__cell--square { grid-column: span 4; }
.pc-bento__cell--tall   { grid-column: span 4; grid-row: span 2; }

@media (max-width: 900px) {
	.pc-bento__cell,
	.pc-bento__cell--wide,
	.pc-bento__cell--square,
	.pc-bento__cell--tall { grid-column: span 12; grid-row: auto; }
}

.pc-bento__media {
	aspect-ratio: 16/9; overflow: hidden; background: var(--pc-navy-deep); position: relative;
}
.pc-bento__cell--square .pc-bento__media { aspect-ratio: 1/1; }
.pc-bento__cell--tall .pc-bento__media { aspect-ratio: 3/4; }
.pc-bento__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.2s var(--pc-easing), filter .6s var(--pc-easing);
	filter: grayscale(.1) contrast(1.05);
}
.pc-bento__cell:hover .pc-bento__media img { transform: scale(1.08); filter: grayscale(0) contrast(1.1); }

.pc-bento__placeholder {
	position: absolute; inset: 0;
	background:
		linear-gradient(135deg, var(--pc-navy) 0%, var(--pc-navy-deep) 100%),
		repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px);
	display: flex; align-items: center; justify-content: center;
}
.pc-bento__num {
	font-family: var(--pc-font-display);
	font-size: clamp(80px, 12vw, 180px);
	color: rgba(255,255,255,.12);
	letter-spacing: -.05em;
}

.pc-bento__body { padding: clamp(24px, 3vw, 36px); }
.pc-bento__label {
	font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em;
	color: var(--pc-orange); display: block; margin-bottom: 12px;
}
.pc-bento__title {
	font-size: clamp(20px, 1.8vw, 28px);
	color: var(--pc-navy-deep);
	margin: 0 0 12px;
}
.pc-bento__desc { color: var(--pc-ink-soft); font-size: 15px; margin: 0 0 18px; }
.pc-bento__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-bento__tags span {
	padding: 6px 12px; background: #fff; border: 1px solid var(--pc-line);
	font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
	color: var(--pc-ink-soft);
}

.pc-bento__link { display: block; color: inherit; }

/* 3D tilt on hover (uses CSS vars set by JS) */
[data-pc-tilt] {
	transition: transform .35s var(--pc-easing);
	transform: perspective(900px) rotateX(0deg) rotateY(0deg);
}

/* =========================================================
   PARALLAX / FEATURED SECTION — full-width horizontal split
   ========================================================= */
.pc-parallax {
	position: relative;
	min-height: 70vh;
	background: var(--pc-navy-deep);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.pc-parallax__layer { position: absolute; inset: 0; will-change: auto; }
.pc-parallax__layer--bg {
	background:
		radial-gradient(ellipse at 20% 30%, rgba(240,128,32,.18), transparent 60%),
		radial-gradient(ellipse at 80% 70%, rgba(20,48,90,.6), transparent 60%),
		var(--pc-navy-deep);
}
.pc-parallax__layer--mid {
	display: flex; align-items: center; justify-content: flex-end;
	pointer-events: none;
	padding-right: 6vw;
}
.pc-parallax__giant {
	font-family: var(--pc-font-display);
	font-size: clamp(160px, 26vw, 420px);
	color: transparent;
	-webkit-text-stroke: 2px rgba(255,255,255,.08);
	text-stroke: 2px rgba(255,255,255,.08);
	letter-spacing: -.04em;
	white-space: nowrap;
	line-height: .85;
}
.pc-parallax__layer--front {
	position: relative; z-index: 2;
	width: 100%;
	display: flex; align-items: center;
	min-height: 70vh;
	padding: 80px 0;
}
.pc-parallax__card {
	max-width: none;
	margin: 0;
	padding: 0 clamp(20px, 4vw, 64px);
	width: 100%;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
}
.pc-parallax__title {
	font-size: clamp(40px, 5.5vw, 84px);
	margin: 16px 0 24px;
	line-height: 1;
}
.pc-parallax__title em { font-style: normal; color: var(--pc-orange); display: block; }
.pc-parallax__desc {
	color: rgba(255,255,255,.78);
	margin-bottom: 28px;
	font-size: clamp(16px, 1.2vw, 19px);
	max-width: 560px;
}
.pc-feature-list {
	list-style: none; padding: 0; margin: 0 0 32px;
	display: grid; gap: 14px;
}
.pc-feature-list li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.pc-feature-list span {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px; border-radius: 50%;
	background: var(--pc-orange); color: #fff; font-size: 13px; font-weight: 700;
	flex-shrink: 0;
}
@media (max-width: 900px) {
	.pc-parallax__card { grid-template-columns: 1fr; }
	.pc-parallax__layer--mid { justify-content: center; padding-right: 0; opacity: .5; }
}
.pc-parallax__media {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--pc-radius);
	overflow: hidden;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.pc-parallax__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.pc-process { background: var(--pc-paper-dim); }
.pc-steps {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--pc-gutter);
	counter-reset: pc-step;
}
.pc-steps li {
	background: #fff; border: 1px solid var(--pc-line); padding: 36px;
	position: relative;
	transition: transform .4s var(--pc-easing), border-color .4s var(--pc-easing);
}
.pc-steps li:hover { transform: translateY(-6px); border-color: var(--pc-orange); }
.pc-steps__num {
	font-family: var(--pc-font-display);
	font-size: 56px; color: var(--pc-orange);
	display: block; margin-bottom: 16px; line-height: 1;
}
.pc-steps li h3 { font-size: 20px; color: var(--pc-navy-deep); margin: 0 0 8px; }
.pc-steps li p  { font-size: 14px; color: var(--pc-ink-soft); margin: 0; }

@media (max-width: 900px) {
	.pc-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.pc-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   KINETIC STRIP
   ========================================================= */
.pc-kinetic {
	background: var(--pc-navy-deep);
	color: #fff;
	overflow: hidden;
	padding: 28px 0;
	border-block: 1px solid rgba(255,255,255,.08);
}
.pc-kinetic__track {
	display: inline-flex; align-items: center; gap: 40px;
	font-family: var(--pc-font-display);
	font-size: clamp(40px, 7vw, 100px);
	text-transform: uppercase; letter-spacing: -.02em;
	white-space: nowrap;
	animation: pc-marquee 28s linear infinite;
}
.pc-kinetic__track em { color: var(--pc-orange); font-style: normal; font-size: .5em; }
.pc-kinetic--outline {
	color: transparent;
	-webkit-text-stroke: 2px #fff;
	text-stroke: 2px #fff;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.pc-cta-section { background: var(--pc-orange); color: #fff; }
.pc-cta-section .pc-section__title,
.pc-cta-section .pc-eyebrow span { color: #fff; }
.pc-cta-section .pc-eyebrow { color: var(--pc-navy-deep); }
.pc-cta-section .pc-accent { color: var(--pc-navy-deep); }
.pc-cta-section .pc-section__lede { color: rgba(255,255,255,.9); }
.pc-cta-section__inner {
	display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.pc-cta-section__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.pc-cta-section .pc-btn--primary { background: var(--pc-navy-deep); color: #fff; }
.pc-cta-section .pc-btn--primary:hover { background: #fff; color: var(--pc-navy-deep); }
.pc-cta-section .pc-btn--ghost { border-color: rgba(255,255,255,.6); }
@media (max-width: 800px) {
	.pc-cta-section__inner { grid-template-columns: 1fr; }
	.pc-cta-section__buttons { justify-content: flex-start; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.pc-footer {
	background: var(--pc-navy-deep);
	color: rgba(255,255,255,.85);
	padding-top: 80px;
	position: relative;
}
.pc-footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; padding-bottom: 48px; }
.pc-footer__logo {
	height: 96px; width: auto; margin-bottom: 20px;
	filter: drop-shadow(0 6px 24px rgba(240,128,32,.25));
}
.pc-footer__tagline { color: rgba(255,255,255,.7); max-width: 380px; font-size: 14px; }
.pc-socials { display: flex; gap: 12px; margin-top: 20px; }
.pc-socials a {
	width: 40px; height: 40px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255,255,255,.2); color: #fff;
	transition: background .3s var(--pc-easing), border-color .3s var(--pc-easing), transform .3s var(--pc-easing);
}
.pc-socials a:hover { background: var(--pc-orange); border-color: var(--pc-orange); transform: translateY(-3px); }

.pc-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pc-footer__title {
	font-family: var(--pc-font-body); font-size: 12px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .2em;
	color: var(--pc-orange); margin: 0 0 16px;
}
.pc-link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pc-link-list a { color: rgba(255,255,255,.78); font-size: 14px; }
.pc-link-list a:hover { color: var(--pc-orange); }

.pc-footer__bottom {
	display: flex; justify-content: space-between; gap: 16px;
	padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08);
	font-size: 12px; color: rgba(255,255,255,.5);
	flex-wrap: wrap;
}
.pc-footer__bottom strong { color: #fff; }

.pc-marquee {
	overflow: hidden;
	border-top: 1px solid rgba(255,255,255,.08);
	background: #000;
	color: rgba(255,255,255,.06);
}
.pc-marquee__track {
	display: inline-flex; white-space: nowrap;
	font-family: var(--pc-font-display);
	font-size: clamp(80px, 14vw, 180px);
	line-height: 1;
	letter-spacing: -.04em;
	animation: pc-marquee 50s linear infinite;
	padding: 20px 0;
	-webkit-text-stroke: 1px rgba(255,255,255,.15);
	color: transparent;
}

@media (max-width: 900px) {
	.pc-footer__top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
	.pc-footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================
   WOOCOMMERCE OVERRIDES
   ========================================================= */
.pc-shop { padding-top: 160px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--pc-gutter) !important; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products li.product {
	width: auto !important; margin: 0 !important; padding: 0 !important;
	background: #fff; border: 1px solid var(--pc-line); overflow: hidden;
	transition: transform .35s var(--pc-easing), box-shadow .35s var(--pc-easing);
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow-soft); }
.woocommerce ul.products li.product a { display: block; padding: 16px; }
.woocommerce ul.products li.product img { margin: 0 0 16px; aspect-ratio: 1/1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--pc-font-head) !important; font-size: 16px !important; color: var(--pc-navy-deep) !important;
	padding: 0 !important; margin: 0 0 8px !important; font-weight: 600 !important;
}
.woocommerce ul.products li.product .price { color: var(--pc-orange) !important; font-weight: 700 !important; }
.woocommerce ul.products li.product .button {
	background: var(--pc-navy-deep) !important; color: #fff !important;
	font-size: 11px !important; text-transform: uppercase; letter-spacing: .15em;
	padding: 12px 18px !important; border-radius: var(--pc-radius) !important;
	margin: 12px 16px 16px !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--pc-orange) !important; }

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering select {
	font-size: 13px; color: var(--pc-ink-soft);
}

.woocommerce span.onsale {
	background: var(--pc-orange) !important; color: #fff !important;
	border-radius: 0 !important; min-height: auto !important;
	padding: 6px 12px !important; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
	font-size: 11px !important; line-height: 1 !important;
	top: 12px !important; left: 12px !important;
}

@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .woocommerce ul.products { grid-template-columns: 1fr; } }

/* Single product */
.woocommerce div.product .product_title {
	font-family: var(--pc-font-head); font-size: clamp(28px, 3vw, 44px); color: var(--pc-navy-deep);
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	color: var(--pc-orange); font-weight: 700; font-size: 28px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	background: var(--pc-navy-deep) !important; color: #fff !important;
	border-radius: var(--pc-radius) !important;
	font-size: 12px !important; text-transform: uppercase; letter-spacing: .18em;
	padding: 14px 28px !important;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--pc-orange) !important; }
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt {
	background: var(--pc-orange) !important;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
	background: var(--pc-navy-deep) !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--pc-ink-soft); margin-bottom: 24px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--pc-navy-deep); }

/* =========================================================
   PAGE / POST GENERIC
   ========================================================= */
.pc-page { padding: 160px 0 100px; }
.pc-page__title { font-size: clamp(32px, 4vw, 56px); color: var(--pc-navy-deep); margin-bottom: 32px; }
.pc-page .pc-content { max-width: 760px; font-size: 17px; line-height: 1.7; color: var(--pc-ink-soft); }
.pc-page .pc-content h2, .pc-page .pc-content h3 { color: var(--pc-navy-deep); margin-top: 1.4em; }
.pc-page .pc-content a { color: var(--pc-orange); text-decoration: underline; }

/* Archive listing for posts */
.pc-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--pc-gutter); }
.pc-archive__item { background: #fff; border: 1px solid var(--pc-line); }
.pc-archive__item img { aspect-ratio: 4/3; object-fit: cover; }
.pc-archive__body { padding: 24px; }
.pc-archive__item h3 { font-size: 20px; margin: 0 0 8px; color: var(--pc-navy-deep); }
.pc-archive__item p { font-size: 14px; color: var(--pc-ink-soft); }
@media (max-width: 900px) { .pc-archive__grid { grid-template-columns: 1fr; } }

/* 404 */
.pc-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 160px 24px 80px; }
.pc-404 h1 { font-family: var(--pc-font-display); font-size: clamp(120px, 24vw, 280px); color: var(--pc-orange); line-height: 1; margin: 0; }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
[data-pc-reveal] {
	opacity: 0; transform: translateY(40px);
	transition: opacity .9s var(--pc-easing), transform .9s var(--pc-easing);
}
[data-pc-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.pc-grain { animation: none; }
}
