/* =====================================================================
 * GradKeepsake Theme — main.css  (v2, HeyCongrats inspired)
 * Brand: #263864 navy + #C9A14A gold + multicolor confetti accents.
 * ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
	--gk-navy:        #263864;
	--gk-navy-dk:     #1a2649;
	--gk-navy-soft:   #3a4a78;
	--gk-gold:        #c9a14a;
	--gk-gold-lt:     #e0c06e;
	--gk-cream:       #faf6ec;
	--gk-bg:          #ffffff;
	--gk-bg-soft:     #f7f8fb;
	--gk-text:        #1f2540;
	--gk-text-mut:    #5a6285;
	--gk-border:      #e3e7ef;
	--gk-confetti-r:  #e74c3c;
	--gk-confetti-y:  #f1c40f;
	--gk-confetti-g:  #2ecc71;
	--gk-confetti-b:  #3498db;
	--gk-confetti-o:  #e67e22;
	--gk-confetti-p:  #9b59b6;

	--gk-radius:      12px;
	--gk-radius-sm:   8px;
	--gk-shadow-sm:   0 2px 6px rgba(38,56,100,.06);
	--gk-shadow:      0 8px 30px rgba(38,56,100,.10);
	--gk-shadow-lg:   0 20px 60px rgba(38,56,100,.18);

	--gk-font:        'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--gk-font-disp:   'Poppins', sans-serif;
}

/* ---------- Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--gk-font);
	color: var(--gk-text);
	background: var(--gk-bg);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gk-navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gk-gold); }
.screen-reader-text { position: absolute; left: -9999px; }
.gk-mt-md { margin-top: 1.25rem; }

.gk-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.gk-text-center { text-align: center; }
.gk-text-bold { font-weight: 700; letter-spacing: .04em; }

/* ---------- Typography ---------- */
.gk-h2 {
	font-family: var(--gk-font-disp);
	font-weight: 800;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	color: var(--gk-navy);
	margin: 0 0 16px;
	letter-spacing: -.01em;
}
.gk-h2-light { color: #fff; }
.gk-h3 {
	font-family: var(--gk-font-disp);
	font-weight: 700;
	font-size: clamp(20px, 2.5vw, 26px);
	color: var(--gk-navy);
	margin: 0 0 10px;
}
.gk-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gk-gold);
	margin-bottom: 14px;
}
.gk-eyebrow-light { color: var(--gk-gold-lt); }
.gk-lead {
	font-size: 17px;
	line-height: 1.7;
	color: var(--gk-text-mut);
	max-width: 760px;
	margin: 0 auto;
}
.gk-lead-wide { max-width: 920px; }
.gk-lead-light { color: rgba(255,255,255,.85); }

.gk-section { padding: 80px 0; position: relative; }
.gk-section-header { margin-bottom: 48px; }

/* ---------- Top bar ---------- */
.gk-topbar {
	background: var(--gk-navy-dk);
	color: #fff;
	font-size: 13.5px;
	padding: 8px 0;
	text-align: center;
	letter-spacing: .03em;
}
.gk-topbar-inner { text-align: center; }
.gk-topbar strong { color: var(--gk-gold-lt); }

/* ---------- Header ---------- */
.gk-site-header {
	background: #fff;
	border-bottom: 1px solid var(--gk-border);
	box-shadow: var(--gk-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 50;
}
.gk-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	gap: 24px;
}
.gk-site-branding { flex: 0 0 auto; }
.gk-logo-link { display: inline-block; }
.gk-logo-img { height: 64px; width: auto; }

.gk-main-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.gk-menu, .gk-menu-fallback {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0; padding: 0;
}
.gk-menu li a {
	font-weight: 600;
	font-size: 14.5px;
	color: var(--gk-navy);
	letter-spacing: .03em;
	text-transform: uppercase;
}
.gk-menu li a:hover { color: var(--gk-gold); }

.gk-menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 36px; height: 36px;
	cursor: pointer;
}
.gk-menu-toggle-bar {
	display: block;
	width: 24px; height: 3px;
	background: var(--gk-navy);
	border-radius: 2px;
	margin: 5px auto;
}

.gk-header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 14px; }
.gk-cart-link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--gk-navy);
	background: var(--gk-bg-soft);
	border-radius: 24px;
	padding: 8px 14px;
	font-weight: 700;
}
.gk-cart-count {
	background: var(--gk-gold);
	color: #fff;
	border-radius: 50%;
	width: 22px; height: 22px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 12px;
}

/* ---------- Buttons ---------- */
.gk-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 6px;
	letter-spacing: .03em;
	transition: all .25s ease;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	line-height: 1.2;
}
.gk-btn-primary { background: var(--gk-navy); color: #fff; }
.gk-btn-primary:hover { background: var(--gk-navy-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(38,56,100,.25); }

.gk-btn-accent { background: var(--gk-gold); color: var(--gk-navy); }
.gk-btn-accent:hover { background: var(--gk-gold-lt); color: var(--gk-navy); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(201,161,74,.30); }

.gk-btn-outline { background: transparent; color: var(--gk-navy); border-color: var(--gk-navy); }
.gk-btn-outline:hover { background: var(--gk-navy); color: #fff; }

.gk-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.gk-btn-ghost:hover { background: #fff; color: var(--gk-navy); }

.gk-btn-lg { padding: 18px 36px; font-size: 16px; }

/* ---------- Hero ---------- */
.gk-hero {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	padding: 140px 0 120px;
	display: flex;
	align-items: center;
	color: #fff;
	text-align: center;
}
.gk-hero-bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 30% 20%, rgba(201,161,74,.30), transparent 50%),
		radial-gradient(ellipse at 70% 80%, rgba(52,152,219,.25), transparent 50%),
		linear-gradient(135deg, var(--gk-navy-dk) 0%, var(--gk-navy) 50%, #2d4170 100%);
	z-index: 0;
}
.gk-hero-overlay {
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(255,255,255,.06), transparent 30%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,.05), transparent 30%);
}
.gk-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}
.gk-hero-title {
	font-family: var(--gk-font-disp);
	font-weight: 900;
	font-size: clamp(48px, 8vw, 96px);
	line-height: 1.05;
	margin: 0 0 18px;
	letter-spacing: -.02em;
	color: #fff;
	text-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.gk-hero-title-accent {
	color: var(--gk-gold-lt);
	font-style: italic;
}
.gk-hero-subtitle {
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.6;
	color: rgba(255,255,255,.92);
	max-width: 720px;
	margin: 0 auto 36px;
	font-weight: 400;
}
.gk-hero-actions {
	display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Confetti pieces */
.gk-confetti {
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 2px;
	opacity: .9;
	animation: gk-fall 8s linear infinite;
}
.gk-confetti-1  { top: -10%; left:  5%;  background: var(--gk-confetti-r); animation-delay: 0s;   }
.gk-confetti-2  { top: -10%; left: 12%;  background: var(--gk-confetti-y); animation-delay: .8s;  border-radius: 50%; }
.gk-confetti-3  { top: -10%; left: 22%;  background: var(--gk-confetti-g); animation-delay: 1.6s; }
.gk-confetti-4  { top: -10%; left: 32%;  background: var(--gk-gold-lt);    animation-delay: 2.2s; border-radius: 50%; }
.gk-confetti-5  { top: -10%; left: 42%;  background: var(--gk-confetti-b); animation-delay: 1.0s; }
.gk-confetti-6  { top: -10%; left: 52%;  background: var(--gk-confetti-o); animation-delay: 2.8s; border-radius: 50%; }
.gk-confetti-7  { top: -10%; left: 62%;  background: var(--gk-confetti-p); animation-delay: 0.4s; }
.gk-confetti-8  { top: -10%; left: 72%;  background: var(--gk-gold);       animation-delay: 1.8s; border-radius: 50%; }
.gk-confetti-9  { top: -10%; left: 82%;  background: var(--gk-confetti-r); animation-delay: 3.2s; }
.gk-confetti-10 { top: -10%; left: 92%;  background: var(--gk-confetti-y); animation-delay: 0.6s; border-radius: 50%; }
.gk-confetti-11 { top: -10%; left: 17%;  background: var(--gk-confetti-g); animation-delay: 4.0s; border-radius: 50%; }
.gk-confetti-12 { top: -10%; left: 37%;  background: var(--gk-gold-lt);    animation-delay: 3.5s; }
.gk-confetti-13 { top: -10%; left: 57%;  background: var(--gk-confetti-b); animation-delay: 4.5s; border-radius: 50%; }
.gk-confetti-14 { top: -10%; left: 77%;  background: var(--gk-confetti-o); animation-delay: 5.0s; }
.gk-confetti-15 { top: -10%; left: 47%;  background: var(--gk-confetti-p); animation-delay: 5.5s; border-radius: 50%; }

@keyframes gk-fall {
	0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
	8%   { opacity: 1; }
	100% { transform: translateY(720px) rotate(540deg); opacity: 0; }
}

/* ---------- Intro section ---------- */
.gk-intro {
	background: var(--gk-bg);
	padding: 70px 0 50px;
}

/* ---------- Twin promo cards (Free Sample / Custom Request) ---------- */
.gk-twin {
	background: var(--gk-bg-soft);
	padding: 80px 0;
}
.gk-twin-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.gk-twin-card {
	background: #fff;
	border-radius: var(--gk-radius);
	padding: 40px 36px;
	text-align: center;
	box-shadow: var(--gk-shadow-sm);
	transition: transform .3s, box-shadow .3s;
}
.gk-twin-card:hover { transform: translateY(-4px); box-shadow: var(--gk-shadow); }
.gk-twin-photo {
	height: 220px;
	margin: -10px -10px 24px;
	border-radius: var(--gk-radius);
	background: linear-gradient(135deg, #f4eed8, #e8dfb8);
	position: relative;
	overflow: hidden;
}
.gk-twin-photo-frames .gk-frame {
	position: absolute;
	background: #6b4226;
	border-radius: 4px;
	box-shadow: inset 0 0 0 4px var(--gk-cream);
}
.gk-frame-1 { width: 90px; height: 120px; left: 30%; top: 15%; transform: rotate(-8deg); }
.gk-frame-2 { width: 90px; height: 120px; left: 50%; top: 25%; transform: rotate(4deg); }
.gk-frame-3 { width: 90px; height: 120px; left: 15%; top: 35%; transform: rotate(-15deg); }

.gk-twin-photo-collage { background: linear-gradient(135deg, #2c3e50, #34495e); }
.gk-collage-bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.05) 75%),
		linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.05) 75%);
	background-size: 30px 30px;
	background-position: 0 0, 15px 15px;
}
.gk-collage-person {
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
}
.gk-person-head {
	width: 70px; height: 70px;
	background: #f4d4a8;
	border-radius: 50%;
	margin: 0 auto 8px;
}
.gk-person-body {
	width: 140px; height: 90px;
	background: var(--gk-navy);
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.gk-twin-title {
	font-family: var(--gk-font-disp);
	font-weight: 800;
	font-size: 26px;
	color: var(--gk-navy);
	margin: 0 0 12px;
}
.gk-twin-card p { color: var(--gk-text-mut); margin: 0 0 24px; }

/* ---------- Stats bar ---------- */
.gk-stats-bar {
	background: var(--gk-navy);
	color: #fff;
	padding: 50px 0;
	border-top: 4px solid var(--gk-gold);
	border-bottom: 4px solid var(--gk-gold);
}
.gk-stats-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	text-align: center;
}
.gk-stat-num {
	font-family: var(--gk-font-disp);
	font-weight: 900;
	font-size: clamp(40px, 5vw, 60px);
	color: var(--gk-gold-lt);
	line-height: 1;
	margin-bottom: 8px;
}
.gk-stat-lbl {
	font-size: 14px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.8);
}

/* ---------- Cats (3 product categories alternating) ---------- */
.gk-cats { padding: 90px 0; }
.gk-cat {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 60px 0;
	border-bottom: 1px solid var(--gk-border);
}
.gk-cat:last-child { border-bottom: 0; }
.gk-cat-row-reverse { direction: rtl; }
.gk-cat-row-reverse > * { direction: ltr; }

.gk-cat-image {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 380px;
}
.gk-cat-frames {
	position: relative;
	width: 480px;
	height: 360px;
}
.gk-cat-frame {
	position: absolute;
	background: #6b4226;
	border-radius: 6px;
	box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.gk-cat-frame-back {
	width: 240px; height: 320px;
	left: 0; top: 30px;
	transform: rotate(-6deg);
	background: #5a3820;
	box-shadow: inset 0 0 0 12px #4a2e18, inset 0 0 0 18px var(--gk-cream);
}
.gk-cat-frame-back.gk-cat-frame-alt { transform: rotate(8deg); left: auto; right: 0; }

.gk-cat-frame-front {
	width: 280px; height: 340px;
	right: 0; top: 0;
	background: #6b4226;
	padding: 20px;
	box-shadow: inset 0 0 0 12px #4a2e18, 0 12px 30px rgba(0,0,0,.25);
}
.gk-cat-frame-hs { right: auto; left: 0; }
.gk-cat-frame-college { right: 0; }

.gk-cat-cert {
	background: #fefdf6;
	height: 100%;
	padding: 30px 22px;
	position: relative;
	border: 1px solid #e8dfb8;
}
.gk-cat-cert-title {
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-size: 13px;
	color: var(--gk-navy);
	text-align: center;
	line-height: 1.3;
	margin-bottom: 14px;
}
.gk-cat-cert-script {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 700;
	font-size: 18px;
	color: var(--gk-navy);
	text-align: center;
	margin-bottom: 12px;
}
.gk-cat-cert-meta {
	font-size: 9px;
	text-align: center;
	color: var(--gk-text-mut);
	letter-spacing: .1em;
	margin-bottom: 8px;
}
.gk-cat-cert-name {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: var(--gk-navy);
	border-bottom: 1px solid #ccc;
	padding-bottom: 6px;
	margin-bottom: 14px;
}
.gk-cat-cert-name-sm {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 11px;
	text-align: center;
	color: var(--gk-navy);
	margin-bottom: 12px;
}
.gk-cat-cert-line { height: 4px; background: #e0d8b0; margin: 8px 0; border-radius: 2px; }
.gk-cat-cert-line-short { width: 60%; margin-left: auto; margin-right: auto; }
.gk-cat-cert-seal {
	width: 50px; height: 50px;
	background: radial-gradient(circle, var(--gk-gold) 60%, var(--gk-gold-lt));
	border-radius: 50%;
	margin: 18px auto 0;
	box-shadow: inset 0 0 0 4px rgba(255,255,255,.4);
}
.gk-cat-cert-seal-green {
	width: 50px; height: 50px;
	background: radial-gradient(circle, #2ecc71 60%, #27ae60);
	border-radius: 50%;
	margin: 18px auto 0;
	box-shadow: inset 0 0 0 4px rgba(255,255,255,.4);
}
.gk-cat-style-tag {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gk-navy);
	color: #fff;
	font-size: 10px;
	letter-spacing: .15em;
	padding: 4px 14px;
	border-radius: 2px;
}
.gk-cat-text { padding: 20px 0; }
.gk-cat-text .gk-h2 { font-size: clamp(24px, 3vw, 36px); }

/* ---------- Steps section ---------- */
.gk-steps {
	background: var(--gk-navy);
	color: #fff;
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}
.gk-steps::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(201,161,74,.15), transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(52,152,219,.10), transparent 40%);
}
.gk-steps .gk-section-header { position: relative; z-index: 1; }
.gk-steps-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 32px;
	position: relative;
	z-index: 1;
}
.gk-step-card {
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: var(--gk-radius);
	padding: 40px 32px;
	text-align: center;
	transition: transform .3s, background .3s;
}
.gk-step-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.10); }
.gk-step-icon {
	width: 70px; height: 70px;
	background: var(--gk-gold);
	border-radius: 50%;
	margin: 0 auto 24px;
	display: flex; align-items: center; justify-content: center;
}
.gk-step-num {
	font-family: var(--gk-font-disp);
	font-weight: 900;
	font-size: 32px;
	color: var(--gk-navy);
}
.gk-step-title {
	font-family: var(--gk-font-disp);
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	margin: 0 0 12px;
}
.gk-step-card p { color: rgba(255,255,255,.78); margin: 0; }

/* ---------- Covers section ---------- */
.gk-covers {
	background: var(--gk-bg-soft);
	padding: 90px 0;
}
.gk-covers-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.gk-covers-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.gk-cover-stack {
	position: relative;
	width: 100%;
	height: 380px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gk-cover {
	position: absolute;
	width: 240px;
	height: 320px;
	border-radius: 6px;
	box-shadow: 0 12px 30px rgba(0,0,0,.20);
}
.gk-cover-1 {
	background: linear-gradient(135deg, var(--gk-navy-dk), var(--gk-navy));
	z-index: 3;
	transform: rotate(-3deg);
}
.gk-cover-2 {
	background: linear-gradient(135deg, #3a2818, #5a3820);
	z-index: 2;
	transform: translateX(40px) rotate(6deg);
}
.gk-cover-3 {
	background: linear-gradient(135deg, #4a4a4a, #2c2c2c);
	z-index: 1;
	transform: translateX(-40px) rotate(-12deg);
}
.gk-cover-emboss {
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translateX(-50%);
	width: 100px; height: 100px;
	border: 3px solid var(--gk-gold);
	border-radius: 50%;
}
.gk-cover-emboss::after {
	content: 'GK';
	position: absolute;
	inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--gk-font-disp);
	font-weight: 900;
	font-size: 28px;
	color: var(--gk-gold);
}
.gk-cover-ribbon {
	position: absolute;
	bottom: 30px;
	left: 0; right: 0;
	height: 12px;
	background: linear-gradient(90deg, transparent, var(--gk-gold), transparent);
}

/* ---------- Why (3 trust pillars) ---------- */
.gk-why { background: var(--gk-bg); padding: 90px 0; }
.gk-why-grid-3 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 32px;
}
.gk-why-card {
	background: #fff;
	border: 1px solid var(--gk-border);
	border-radius: var(--gk-radius);
	padding: 44px 32px;
	text-align: center;
	transition: all .3s;
}
.gk-why-card:hover { transform: translateY(-6px); box-shadow: var(--gk-shadow); border-color: var(--gk-gold); }
.gk-why-card-feature {
	background: var(--gk-navy);
	color: #fff;
	border-color: var(--gk-navy);
	transform: scale(1.04);
}
.gk-why-card-feature .gk-why-card-title { color: #fff; }
.gk-why-card-feature p { color: rgba(255,255,255,.85); }
.gk-why-card-feature .gk-link-arrow { color: var(--gk-gold-lt); }
.gk-why-card-feature .gk-why-card-icon { background: var(--gk-gold); color: var(--gk-navy); }

.gk-why-card-icon {
	width: 80px; height: 80px;
	background: var(--gk-bg-soft);
	color: var(--gk-navy);
	border-radius: 50%;
	margin: 0 auto 24px;
	display: flex; align-items: center; justify-content: center;
}
.gk-why-card-title {
	font-family: var(--gk-font-disp);
	font-weight: 700;
	font-size: 22px;
	color: var(--gk-navy);
	margin: 0 0 14px;
}
.gk-why-card p { margin: 0 0 18px; color: var(--gk-text-mut); }
.gk-link-arrow {
	font-weight: 700;
	font-size: 14px;
	color: var(--gk-gold);
	letter-spacing: .04em;
	text-transform: uppercase;
}
.gk-link-arrow:hover { color: var(--gk-navy); }

/* ---------- Testimonials ---------- */
.gk-testimonials { background: var(--gk-bg-soft); padding: 90px 0; }
.gk-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 30px;
}
.gk-testimonial-card {
	background: #fff;
	border-radius: var(--gk-radius);
	padding: 32px;
	box-shadow: var(--gk-shadow-sm);
	transition: transform .3s, box-shadow .3s;
}
.gk-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--gk-shadow); }
.gk-testimonial-head {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 14px;
}
.gk-testimonial-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--gk-navy);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700;
}
.gk-testimonial-name { font-weight: 700; color: var(--gk-navy); }
.gk-testimonial-date { font-size: 13px; color: var(--gk-text-mut); }
.gk-google-mark {
	margin-left: auto;
	width: 32px; height: 32px;
	background: #fff;
	border: 1px solid var(--gk-border);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800;
	color: #4285F4;
}
.gk-testimonial-stars { color: var(--gk-gold); margin-bottom: 12px; letter-spacing: 2px; }
.gk-star { font-size: 18px; }
.gk-testimonial-text { color: var(--gk-text-mut); margin: 0; line-height: 1.65; }

/* ---------- CTA ---------- */
.gk-cta {
	background: linear-gradient(135deg, var(--gk-navy-dk), var(--gk-navy));
	color: #fff;
	padding: 90px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.gk-cta-confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.gk-cta-confetti span {
	position: absolute;
	width: 12px; height: 12px;
	border-radius: 2px;
	opacity: .8;
	animation: gk-fall 9s linear infinite;
}
.gk-cta-confetti span:nth-child(1)  { top:-10%; left:8%;  background: var(--gk-confetti-r); animation-delay: 0s; }
.gk-cta-confetti span:nth-child(2)  { top:-10%; left:18%; background: var(--gk-confetti-y); animation-delay: 1s; border-radius: 50%; }
.gk-cta-confetti span:nth-child(3)  { top:-10%; left:28%; background: var(--gk-confetti-g); animation-delay: 2s; }
.gk-cta-confetti span:nth-child(4)  { top:-10%; left:38%; background: var(--gk-gold);       animation-delay: 1.5s; border-radius: 50%; }
.gk-cta-confetti span:nth-child(5)  { top:-10%; left:48%; background: var(--gk-confetti-b); animation-delay: 0.5s; }
.gk-cta-confetti span:nth-child(6)  { top:-10%; left:58%; background: var(--gk-confetti-o); animation-delay: 2.5s; border-radius: 50%; }
.gk-cta-confetti span:nth-child(7)  { top:-10%; left:68%; background: var(--gk-confetti-p); animation-delay: 3s; }
.gk-cta-confetti span:nth-child(8)  { top:-10%; left:78%; background: var(--gk-gold-lt);    animation-delay: 0.8s; border-radius: 50%; }
.gk-cta-confetti span:nth-child(9)  { top:-10%; left:88%; background: var(--gk-confetti-r); animation-delay: 3.5s; }
.gk-cta-confetti span:nth-child(10) { top:-10%; left:50%; background: var(--gk-confetti-y); animation-delay: 4s; border-radius: 50%; }

.gk-cta-inner { position: relative; z-index: 1; }
.gk-cta-actions {
	display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
	margin-top: 28px;
}

/* ---------- Footer ---------- */
.gk-site-footer {
	background: #0e1731;
	color: #c2c8da;
	padding-top: 72px;
}
.gk-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 60px;
}
.gk-footer-brand .gk-logo-img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 16px; opacity: .92; }
.gk-footer-about p { line-height: 1.7; margin: 0 0 20px; }
.gk-footer-contact { list-style: none; margin: 0; padding: 0; }
.gk-footer-contact li { margin-bottom: 8px; font-size: 14.5px; }
.gk-footer-contact a { color: var(--gk-gold-lt); }
.gk-footer-col h4.footer-widget-title {
	color: #fff;
	font-family: var(--gk-font-disp);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 18px;
}
.gk-footer-col ul { list-style: none; margin: 0; padding: 0; }
.gk-footer-col ul li { margin-bottom: 10px; font-size: 14.5px; }
.gk-footer-col ul li a { color: #c2c8da; }
.gk-footer-col ul li a:hover { color: var(--gk-gold-lt); }
.gk-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 20px 0 24px;
	font-size: 13px;
	text-align: center;
	color: rgba(255,255,255,.55);
}
.gk-footer-bottom p { margin: 4px 0; }
.gk-footer-disclaimer { font-size: 12px; color: rgba(255,255,255,.45); max-width: 760px; margin: 8px auto 0; }

/* ---------- Single posts / pages ---------- */
.gk-page-content, .gk-post-content {
	max-width: 760px;
	margin: 60px auto;
	padding: 0 24px;
	font-size: 17px;
	line-height: 1.7;
}
.gk-page-content h1, .gk-post-content h1 {
	font-family: var(--gk-font-disp);
	font-weight: 800;
	color: var(--gk-navy);
	font-size: 42px;
	margin: 0 0 24px;
}

/* ---------- WooCommerce ---------- */
.woocommerce-products-header__title.page-title { font-family: var(--gk-font-disp); font-weight: 800; color: var(--gk-navy); }
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button.alt {
	background: var(--gk-navy) !important;
	color: #fff !important;
	border-radius: 6px !important;
	font-weight: 700 !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover {
	background: var(--gk-gold) !important;
	color: var(--gk-navy) !important;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price { color: var(--gk-gold) !important; font-weight: 700 !important; }
.woocommerce-message,
.woocommerce-info { border-top-color: var(--gk-gold) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.gk-twin-grid,
	.gk-covers-grid { grid-template-columns: 1fr; }
	.gk-cat { grid-template-columns: 1fr; gap: 32px; }
	.gk-cat-row-reverse { direction: ltr; }
	.gk-stats-grid { grid-template-columns: 1fr; gap: 32px; }
	.gk-steps-grid,
	.gk-why-grid-3,
	.gk-testimonials-grid { grid-template-columns: 1fr; }
	.gk-footer-grid { grid-template-columns: 1fr 1fr; }
	.gk-why-card-feature { transform: none; }
}
@media (max-width: 720px) {
	.gk-section { padding: 60px 0; }
	.gk-menu { display: none; }
	.gk-menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.gk-menu.is-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		background: #fff;
		padding: 20px;
		box-shadow: var(--gk-shadow);
		gap: 14px;
	}
	.gk-footer-grid { grid-template-columns: 1fr; }
	.gk-hero { padding: 80px 0 60px; min-height: 480px; }
	.gk-logo-img { height: 48px; }
}


/* ============================================================
 * MOBILE-FIRST RESPONSIVE OVERRIDES (v3 — full mobile pass)
 * Breakpoints:
 *   1024px : tablet landscape -> mobile menu, stack hero actions
 *    768px : tablet portrait  -> single column for grids
 *    560px : large phone      -> reduce padding, font sizes
 *    400px : small phone      -> ultra compact, reduce confetti
 * ========================================================== */

/* ---------- Touch & overflow safety ---------- */
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }
a, button, .gk-btn, .gk-cart-link, .gk-menu-toggle { -webkit-tap-highlight-color: rgba(38,56,100,.15); }

/* Ensure all CTA / buttons reach 44x44 touch target on mobile */
@media (max-width: 1024px) {
	.gk-btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
	.gk-cart-link { min-height: 44px; min-width: 44px; padding: 8px 12px; }
}

/* ============================================================
 * TABLET LANDSCAPE & DOWN (<= 1024px)
 * ========================================================== */
@media (max-width: 1024px) {

	.gk-container { padding-left: 20px; padding-right: 20px; }
	.gk-section { padding: 64px 0; }
	.gk-section-header { margin-bottom: 36px; }

	/* Header: show hamburger, collapse desktop menu */
	.gk-header-inner { padding: 12px 20px; gap: 12px; flex-wrap: nowrap; }
	.gk-logo-img { height: 48px; }

	.gk-main-nav { order: 3; flex: 0 0 auto; position: static; }
	.gk-menu-toggle {
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 44px; height: 44px;
		background: transparent;
		border: 1px solid var(--gk-border);
		border-radius: 8px;
		cursor: pointer;
		padding: 0;
	}
	.gk-menu-toggle-bar {
		display: block;
		width: 22px; height: 2px;
		background: var(--gk-navy);
		border-radius: 2px;
		margin: 0;
		transition: transform .25s ease, opacity .25s ease;
	}
	.gk-menu-toggle[aria-expanded="true"] .gk-menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.gk-menu-toggle[aria-expanded="true"] .gk-menu-toggle-bar:nth-child(2) { opacity: 0; }
	.gk-menu-toggle[aria-expanded="true"] .gk-menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.gk-menu, .gk-menu-fallback {
		display: none;
		position: absolute;
		left: 0; right: 0;
		top: 100%;
		flex-direction: column;
		gap: 0;
		background: #fff;
		padding: 8px 0;
		margin: 0;
		box-shadow: 0 10px 30px rgba(0,0,0,.10);
		border-top: 1px solid var(--gk-border);
		max-height: 70vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.gk-main-nav.is-open .gk-menu,
	.gk-main-nav.is-open .gk-menu-fallback {
		display: flex;
	}
	.gk-menu li, .gk-menu-fallback li {
		list-style: none;
		border-bottom: 1px solid var(--gk-border);
	}
	.gk-menu li:last-child, .gk-menu-fallback li:last-child { border-bottom: 0; }
	.gk-menu li a, .gk-menu-fallback li a {
		display: block;
		padding: 14px 24px;
		font-size: 15px;
		font-weight: 600;
		text-transform: uppercase;
	}

	/* Header layout: brand left, cart + toggle right */
	.gk-header-actions { order: 2; gap: 8px; }

	/* Hero */
	.gk-hero { min-height: 0; padding: 80px 0 70px; }
	.gk-hero-title { font-size: clamp(36px, 9vw, 64px); line-height: 1.06; margin-bottom: 14px; }
	.gk-hero-subtitle { font-size: 16px; margin-bottom: 28px; padding: 0 6px; }
	.gk-hero-actions { gap: 12px; }
	.gk-hero-actions .gk-btn { width: 100%; max-width: 320px; }

	/* Reduce confetti density / size on small screens */
	.gk-confetti { width: 10px; height: 10px; }
	.gk-confetti-11, .gk-confetti-12, .gk-confetti-13,
	.gk-confetti-14, .gk-confetti-15 { display: none; }

	/* Sections that were 2-col -> 1-col */
	.gk-twin-grid,
	.gk-covers-grid,
	.gk-reliable-grid,
	.gk-service-grid,
	.gk-hero-grid,
	.gk-why-grid {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}

	/* Cats: stack vertically with image first */
	.gk-cat {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 40px 0;
	}
	.gk-cat-row-reverse { direction: ltr; }
	.gk-cat-row-reverse .gk-cat-image { order: -1; }
	.gk-cat-image { min-height: 320px; }
	.gk-cat-frames { width: 100%; max-width: 380px; height: 320px; margin: 0 auto; }
	.gk-cat-frame-back { width: 60%; height: 84%; left: 0; }
	.gk-cat-frame-back.gk-cat-frame-alt { right: 0; left: auto; }
	.gk-cat-frame-front { width: 70%; height: 92%; right: 0; top: 0; }
	.gk-cat-frame-hs { right: auto; left: 0; }
	.gk-cat-text { padding: 0; text-align: center; }

	/* Stats: stack with subtle dividers */
	.gk-stats-bar { padding: 36px 0; }
	.gk-stats-grid { grid-template-columns: 1fr; gap: 20px; }
	.gk-stat { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
	.gk-stat:last-child { border-bottom: 0; }
	.gk-stat-num { font-size: clamp(32px, 7vw, 44px); }

	/* Steps + Why + Testimonials -> 1 column */
	.gk-steps-grid,
	.gk-why-grid-3,
	.gk-testimonials-grid {
		grid-template-columns: 1fr !important;
		gap: 18px;
	}
	.gk-why-card-feature { transform: none !important; }

	/* Cover stack scaled */
	.gk-cover-stack { height: 320px; }
	.gk-cover { width: 200px; height: 270px; }
	.gk-cover-2 { transform: translateX(28px) rotate(6deg); }
	.gk-cover-3 { transform: translateX(-28px) rotate(-12deg); }

	/* Covers actions full width */
	.gk-covers-actions { justify-content: center; }
	.gk-covers-actions .gk-btn { flex: 1 1 auto; min-width: 220px; }

	/* CTA */
	.gk-cta { padding: 64px 0; }
	.gk-cta-actions { gap: 12px; }
	.gk-cta-actions .gk-btn { width: 100%; max-width: 320px; }

	/* Footer */
	.gk-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
	.gk-site-footer { padding-top: 56px; }

	/* Topbar smaller */
	.gk-topbar { font-size: 12.5px; padding: 7px 0; }
	.gk-topbar span { display: inline-block; padding: 0 12px; }

	/* Twin photos a bit shorter */
	.gk-twin-photo { height: 180px; }

	/* Section headings centered */
	.gk-section-header { text-align: center; }
	.gk-h2 { text-align: center; }
	.gk-eyebrow { text-align: center; }
}

/* ============================================================
 * TABLET PORTRAIT & PHONE (<= 768px)
 * ========================================================== */
@media (max-width: 768px) {

	.gk-section { padding: 56px 0; }
	.gk-h2 { font-size: clamp(26px, 6vw, 34px); margin-bottom: 12px; }
	.gk-h3 { font-size: 20px; }
	.gk-lead { font-size: 16px; padding: 0 4px; }
	.gk-eyebrow { font-size: 12px; letter-spacing: .18em; }

	/* Cats: smaller frames, single column */
	.gk-cat { padding: 32px 0; }
	.gk-cat-frames { height: 280px; max-width: 320px; }
	.gk-cat-frame-back { width: 56%; height: 80%; }
	.gk-cat-frame-front { width: 70%; height: 90%; }
	.gk-cat-cert { padding: 18px 14px; }
	.gk-cat-cert-title { font-size: 11px; }
	.gk-cat-cert-script { font-size: 14px; }
	.gk-cat-cert-name { font-size: 13px; padding-bottom: 4px; margin-bottom: 10px; }
	.gk-cat-cert-name-sm { font-size: 10px; margin-bottom: 8px; }
	.gk-cat-cert-line { height: 3px; margin: 5px 0; }
	.gk-cat-cert-seal,
	.gk-cat-cert-seal-green { width: 38px; height: 38px; margin-top: 12px; }
	.gk-cat-style-tag { font-size: 9px; padding: 3px 10px; }

	/* Steps */
	.gk-step-card { padding: 30px 24px; }
	.gk-step-icon { width: 60px; height: 60px; margin-bottom: 18px; }
	.gk-step-num { font-size: 26px; }
	.gk-step-title { font-size: 19px; }

	/* Why card */
	.gk-why-card { padding: 32px 24px; }
	.gk-why-card-icon { width: 64px; height: 64px; margin-bottom: 18px; }
	.gk-why-card-title { font-size: 19px; }

	/* Testimonials */
	.gk-testimonial-card { padding: 24px 22px; }
	.gk-testimonial-text { font-size: 14.5px; }

	/* Twin cards */
	.gk-twin-card { padding: 28px 22px; }
	.gk-twin-title { font-size: 22px; }
	.gk-twin-photo { height: 160px; }

	/* Cover stack scale */
	.gk-cover { width: 180px; height: 240px; }
	.gk-cover-emboss { width: 80px; height: 80px; }
	.gk-cover-emboss::after { font-size: 22px; }

	/* Footer reduce columns to 1 with grouped headings */
	.gk-footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
	.gk-footer-brand .gk-logo-img { margin: 0 auto 16px; }
	.gk-footer-contact { display: inline-block; text-align: left; }
}

/* ============================================================
 * LARGE PHONE & DOWN (<= 560px)
 * ========================================================== */
@media (max-width: 560px) {

	.gk-container { padding-left: 16px; padding-right: 16px; }
	.gk-section { padding: 48px 0; }
	.gk-section-header { margin-bottom: 28px; }

	.gk-hero { padding: 64px 0 56px; }
	.gk-hero-title { font-size: clamp(34px, 11vw, 48px); }
	.gk-hero-subtitle { font-size: 15px; line-height: 1.55; }

	.gk-h2 { font-size: clamp(24px, 7vw, 30px); }
	.gk-lead { font-size: 15.5px; line-height: 1.6; }

	/* Topbar — keep concise */
	.gk-topbar { font-size: 11.5px; }
	.gk-topbar span { padding: 0 8px; }

	/* Header */
	.gk-header-inner { padding: 10px 16px; }
	.gk-logo-img { height: 42px; }
	.gk-cart-link { padding: 8px 10px; font-size: 13px; }

	/* Buttons */
	.gk-btn { font-size: 14px; padding: 14px 22px; }
	.gk-btn-lg { padding: 16px 26px; font-size: 15px; }

	/* Cats: even smaller */
	.gk-cat-frames { height: 240px; max-width: 280px; }
	.gk-cat-cert { padding: 14px 10px; }
	.gk-cat-cert-title { font-size: 10px; }
	.gk-cat-cert-name { font-size: 11px; }
	.gk-cat-cert-script { font-size: 12px; }

	/* Reduce more confetti */
	.gk-confetti-7, .gk-confetti-8, .gk-confetti-9, .gk-confetti-10 { display: none; }

	/* Twin */
	.gk-twin-photo { height: 140px; margin: -6px -6px 18px; }
	.gk-twin-card { padding: 24px 18px; }
	.gk-twin-title { font-size: 20px; }

	/* Stats */
	.gk-stat-num { font-size: 36px; }
	.gk-stat-lbl { font-size: 12.5px; letter-spacing: .08em; }

	/* Steps & Why & Cover */
	.gk-step-card,
	.gk-why-card { padding: 28px 20px; }
	.gk-cover-stack { height: 280px; }
	.gk-cover { width: 160px; height: 215px; }
	.gk-cover-2 { transform: translateX(20px) rotate(6deg); }
	.gk-cover-3 { transform: translateX(-20px) rotate(-12deg); }

	/* Testimonials */
	.gk-testimonial-card { padding: 22px 18px; }
	.gk-testimonial-avatar { width: 42px; height: 42px; }
	.gk-testimonial-name { font-size: 14.5px; }
	.gk-testimonial-date { font-size: 12px; }

	/* Footer */
	.gk-site-footer { padding-top: 44px; }
	.gk-footer-col h4.footer-widget-title { font-size: 14.5px; margin-bottom: 14px; }
	.gk-footer-col ul li { font-size: 14px; }
	.gk-footer-bottom { font-size: 12px; padding: 16px 0 20px; }
	.gk-footer-disclaimer { font-size: 11.5px; }
}

/* ============================================================
 * SMALL PHONE & DOWN (<= 400px)  — iPhone SE / 320 width
 * ========================================================== */
@media (max-width: 400px) {

	.gk-container { padding-left: 14px; padding-right: 14px; }
	.gk-hero { padding: 56px 0 48px; }
	.gk-hero-title { font-size: 32px; line-height: 1.08; }
	.gk-hero-subtitle { font-size: 14.5px; }

	.gk-h2 { font-size: 22px; line-height: 1.2; }
	.gk-lead { font-size: 15px; }

	.gk-cat-frames { height: 220px; max-width: 250px; }
	.gk-cat-frame-front { width: 72%; }
	.gk-cat-cert { padding: 12px 8px; }
	.gk-cat-cert-seal,
	.gk-cat-cert-seal-green { width: 32px; height: 32px; }

	.gk-cover-stack { height: 240px; }
	.gk-cover { width: 140px; height: 188px; }
	.gk-cover-emboss { width: 64px; height: 64px; top: 38%; }
	.gk-cover-emboss::after { font-size: 18px; }

	.gk-twin-photo { height: 120px; }
	.gk-frame-1 { width: 70px; height: 92px; }
	.gk-frame-2 { width: 70px; height: 92px; }
	.gk-frame-3 { width: 70px; height: 92px; }

	/* Even fewer confetti */
	.gk-confetti-5, .gk-confetti-6 { display: none; }

	.gk-btn { font-size: 13.5px; padding: 13px 20px; }
}

/* ============================================================
 * ACCESSIBILITY: respect reduced-motion
 * ========================================================== */
@media (prefers-reduced-motion: reduce) {
	.gk-confetti, .gk-cta-confetti span { animation: none !important; opacity: 0 !important; }
	* { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
 * LANDSCAPE PHONE: keep hero shorter so CTA visible
 * ========================================================== */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
	.gk-hero { padding: 48px 0 40px; min-height: 0; }
	.gk-hero-title { font-size: 36px; }
	.gk-hero-subtitle { margin-bottom: 18px; }
}


/* ============================================================
 * ELEMENTOR COMPATIBILITY (v3.1)
 * ========================================================== */

/* Full-width template: kill the default content padding so Elementor sections truly span the viewport */
.gk-fullwidth-template,
.gk-fullwidth-page,
.gk-fullwidth-content {
	max-width: none !important;
	width: 100%;
	padding: 0;
	margin: 0;
}
.gk-fullwidth-content > .elementor {
	width: 100%;
}

/* Canvas template: zero everything so Elementor owns the page */
body.gk-canvas-template {
	margin: 0;
	padding: 0;
}
body.gk-canvas-template .gk-canvas-main {
	min-height: 100vh;
}

/* Elementor editor preview: hide our PHP-built front-page sections (they belong to front-page.php only) */
body.elementor-editor-active .gk-section-hero,
body.elementor-editor-active .gk-stats-bar { /* harmless; only inside the editor preview */
	display: block;
}

/* When Elementor takes over a page, ensure our headings inherit theme tokens but allow override */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
	font-family: var(--gk-font-display, 'Playfair Display', Georgia, serif);
}
.elementor-widget-button .elementor-button {
	font-family: var(--gk-font-sans, 'Montserrat', sans-serif);
}

/* Make sure Elementor's container respects our content_width on smaller screens */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1280px;
}


/* ============================================================
 * REAL PHOTO BLOCKS (v3.2) — twin cards & category rows
 * Override previous CSS-art placeholders with real photography.
 * ========================================================== */

/* --- Twin promo cards (Free Sample / Custom Request) --- */
.gk-twin-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 18px;
	overflow: hidden;
	background: #f3f1ec;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 18px 38px -22px rgba(38, 56, 100, 0.35);
	margin-bottom: 22px;
}
.gk-twin-photo picture,
.gk-twin-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.gk-twin-card:hover .gk-twin-photo img {
	transform: scale(1.04);
}
/* Subtle gold corner accent on hover for premium feel */
.gk-twin-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	box-shadow: 0 0 0 1px rgba(196, 161, 90, 0.25) inset;
}

/* --- Category rows (GED / HS / College) --- */
.gk-cat-image {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	aspect-ratio: 4 / 3;
	border-radius: 22px;
	overflow: hidden;
	background: #f3f1ec;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 22px 44px -24px rgba(38, 56, 100, 0.32),
		0 4px 12px -8px rgba(38, 56, 100, 0.18);
}
.gk-cat-image picture,
.gk-cat-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.gk-cat-image:hover img {
	transform: scale(1.03);
}
/* Decorative gold ring */
.gk-cat-image::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(196, 161, 90, 0.35);
	border-radius: 16px;
	pointer-events: none;
	z-index: 2;
}

/* Hide legacy CSS-art placeholders (no longer used but kept in CSS) */
.gk-twin-photo-frames,
.gk-twin-photo-collage,
.gk-cat-frames {
	display: none !important;
}

/* Mobile: keep aspect ratio but reduce shadow weight */
@media (max-width: 720px) {
	.gk-twin-photo,
	.gk-cat-image {
		border-radius: 14px;
		box-shadow: 0 12px 26px -18px rgba(38, 56, 100, 0.35);
	}
	.gk-cat-image::before { inset: 7px; border-radius: 10px; }
}


/* ============================================================
 * v3.3 FIXES
 *  1) Lock site logo height (covers the WP-injected `.custom-logo`
 *     element so user-uploaded oversized logos don't break Header).
 *  2) Enlarge the twin-photo cards.
 * ========================================================== */

/* --- 1) Header logo size cap (works for our custom <img> AND WP custom-logo) --- */
.gk-site-header .custom-logo-link,
.gk-site-header .gk-logo-link {
	display: inline-flex;
	align-items: center;
	max-height: 72px;
	line-height: 0;
}
.gk-site-header .custom-logo,
.gk-site-header .gk-logo-img {
	display: block;
	max-height: 64px !important;
	width: auto !important;
	height: auto !important;
	max-width: 280px;
	object-fit: contain;
}

/* Tablet */
@media (max-width: 960px) {
	.gk-site-header .custom-logo,
	.gk-site-header .gk-logo-img {
		max-height: 52px !important;
		max-width: 220px;
	}
}
/* Phone */
@media (max-width: 560px) {
	.gk-site-header .custom-logo,
	.gk-site-header .gk-logo-img {
		max-height: 44px !important;
		max-width: 180px;
	}
}

/* Footer logo same treatment (was inverted to white) */
.gk-footer-brand .custom-logo,
.gk-footer-brand .gk-logo-img {
	max-height: 56px !important;
	width: auto !important;
	height: auto !important;
	max-width: 220px;
}

/* --- 2) Make the twin-card photo bigger and more dominant --- */
.gk-twin-card {
	padding: 0 0 28px;          /* let photo bleed flush to top */
	overflow: hidden;
}
.gk-twin-card > .gk-twin-title,
.gk-twin-card > p,
.gk-twin-card > .gk-btn {
	margin-left: 28px;
	margin-right: 28px;
}
.gk-twin-photo {
	aspect-ratio: 16 / 10;       /* was 4/3 — now wider & shorter */
	margin: 0 0 24px;            /* flush to card edges */
	border-radius: 18px 18px 0 0;
	box-shadow: none;
}
.gk-twin-photo::after { display: none; }

@media (max-width: 720px) {
	.gk-twin-photo { aspect-ratio: 16 / 11; border-radius: 14px 14px 0 0; }
	.gk-twin-card > .gk-twin-title,
	.gk-twin-card > p,
	.gk-twin-card > .gk-btn { margin-left: 20px; margin-right: 20px; }
}
