/* =======
   THE LEATHER LAUNDRY — THEME STYLESHEET (FINAL CLEAN)
   ===================== */
@font-face {
	font-family: 'Balkind';
	src: url('../fonts/balkind-extralight-webfont.woff2') format('woff2'),
	     url('../fonts/balkind-extralight-webfont.woff') format('woff');
	font-weight: 200;
	font-display: swap;
}
@font-face {
	font-family: 'Balkind';
	src: url('../fonts/balkind-light-webfont.woff') format('woff');
	font-weight: 300;
	font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { margin-top: 0 !important; scroll-behavior: smooth; font-size: 16px; }


/* ============================================================================
   2. VARIABLES
   ============================================================================ */
:root {
	--deep-red: #60091A;
--cream: #ffffff;
--burnt-orange: #ffffff;
--beige: #D9CDBA;
--deep-green: #217C54;
--brown: #7E4939;
--black: #101010;
--espresso: #101010;        
--cognac: #7E4939;          
--cognac-light: #A06B52;    
--champagne: #F4EEE2;       
--ivory: #FAF6EE;           
--gold: #ffffff;            
--gold-light: #E8845A;      
--warm-gray: #8A7E74;       
--light-gray: #D9CDBA;     
--white: #FFFFFF;           
--green-trust: #217C54;     
--green-light: #E8F5EE;

	--font-display: 'Balkind', Georgia, serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--header-h: 76px;
	--container: 1280px;
	--ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================================
   3. BASE
   ============================================================================ */
body {
	font-family: var(--font-body);
	color: var(--espresso);
	background: var(--ivory);
	overflow-x: hidden;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	max-width: 100%;
}
img, video, svg, iframe { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: var(--font-body); }
.container, .tll-wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }


/* ============================================================================
   4. ANIMATIONS
   ============================================================================ */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes float     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
@keyframes shimmer   { from { background-position: -200% 0; } to { background-position: 200% 0; } }
@keyframes slideIn   { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse-play{ 0%,100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.4); } 50% { box-shadow: 0 0 0 20px rgba(201,169,110,0); } }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury); }
.fade-in.visible { opacity: 1; transform: none; }


/* ============================================================================
   5. BUTTONS (non-Gutenberg standalone use — bridge.css handles .wp-block-button variants)
   ============================================================================ */
.btn-primary {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--gold); color: var(--espresso);
	padding: 16px 34px; border-radius: 6px;
	font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
	transition: all 0.4s var(--ease-luxury);
	position: relative; overflow: hidden;
}
.btn-primary::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,169,110,0.4); }

.btn-outline {
	display: inline-flex; align-items: center; gap: 10px;
	background: transparent; color: var(--espresso);
	padding: 15px 32px; border-radius: 6px; border: 1.5px solid var(--espresso);
	font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
	transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--espresso); color: var(--champagne); }

.btn-outline-light {
	display: inline-flex; align-items: center; gap: 10px;
	background: transparent; color: var(--champagne);
	padding: 15px 32px; border-radius: 6px; border: 1.5px solid rgba(245,237,227,0.3);
	font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
	transition: all 0.3s ease;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-secondary {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 22px; border-radius: 6px;
	border: 1.5px solid rgba(26,18,11,0.18); color: var(--espresso);
	font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
	text-decoration: none; transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--cognac); color: var(--cognac); }

/* ============================================================================
   6. SECTIONS & SHARED
   ============================================================================ */
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-dark  { background: var(--espresso); color: var(--champagne); }
.section-red   { background: var(--deep-red); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-beige { background: var(--beige); }

.section-label {
	display: inline-block;
	font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
	color: var(--cognac); margin-bottom: 16px;
}
.section-dark .section-label, .section-red .section-label { color: var(--gold); }

.section-title {
	font-family: var(--font-body);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 600; line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
	font-size: 17px; color: var(--warm-gray); line-height: 1.65;
	max-width: 580px;
}
.section-dark .section-sub, .section-red .section-sub { color: rgba(245,237,227,0.65); }

.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header-center .section-sub { margin: 0 auto; }

.divider        { width: 48px; height: 2px; background: var(--cognac); margin: 20px 0; }
.divider-center { margin: 20px auto; }
.dot            { width: 4px; height: 4px; border-radius: 50%; background: var(--light-gray); }


/* ============================================================================
   7. PAGE HERO (inner pages — about, contact, services, etc.)
   ============================================================================ */
.page-hero {
	background:#101010;
	background-size: cover; background-position: center; background-repeat: no-repeat;
	padding: 100px 0 60px;  
	text-align: center;
	position: relative; overflow: hidden;
	color: #fff;
}
.page-hero::before {
	content: ''; position: absolute; inset: 0;
	background:#101010;
	pointer-events: none; z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero-label {
	display: inline-block;
	font-size: 11px; font-weight: 300; letter-spacing: 1.5px; text-transform: uppercase;
	color: var(--gold); margin-bottom: 16px;
}
.page-hero h1, .page-hero-title {
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 60px);
	font-weight: 200; line-height: 1.15;
	color: var(--champagne); margin-bottom: 20px;
	position: relative; z-index: 2;
}
.page-hero h1 em, .page-hero-title em { font-style: italic; color: #ffffff; }
.page-hero p, .page-hero-sub {
	font-size: 17px; color: rgba(245,237,227,0.62);
	max-width: 580px; margin: 0 auto;
	line-height: 1.65; position: relative; z-index: 2;
}

/* Breadcrumb */
.breadcrumb, .tll-breadcrumb,.tll_breadcrumb{
	display: flex; align-items: center; gap: 8px; justify-content: flex-start;
	font-size: 13px; color: rgba(245,237,227,0.5);
	margin-bottom: 24px; position: relative; z-index: 2;
}
.breadcrumb a, .tll-breadcrumb a { color: var(--gold); cursor: pointer; transition: opacity 0.2s; }
.breadcrumb a:hover, .tll-breadcrumb a:hover { opacity: 0.8; }
.tll-breadcrumb .sep, .breadcrumb .sep { opacity: 0.4; }


/* ============================================================================
   8. HOME — HERO (non-Gutenberg fallback; bridge.css handles .wp-block-group.hero)
   ============================================================================ */
.hero {
	position: relative; min-height: 92vh;
	display: flex; align-items: center;
	background: linear-gradient(135deg, #120A05 0%, #1E1008 40%, #2D1A0C 100%);
	overflow: hidden;
}
.hero::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 55% 60% at 70% 45%, rgba(96,9,26,0.25) 0%, transparent 65%),
		radial-gradient(ellipse 40% 50% at 20% 70%, rgba(201,169,110,0.07) 0%, transparent 60%);
	pointer-events: none;
}
.hero-grain {
	position: absolute; inset: 0; opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
	pointer-events: none;
}
.hero-inner {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 60px; align-items: center;
	width: 100%; max-width: var(--container);
	margin: 0 auto; padding: 0 32px;
}
.hero-badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(201,169,110,0.1);
	border: 1px solid rgba(201,169,110,0.22);
	border-radius: 50px; padding: 8px 18px;
	font-size: 11px; font-weight: 700; letter-spacing: 2px;
	text-transform: uppercase; color: var(--gold);
	margin-bottom: 28px;
	animation: fadeUp 0.9s var(--ease-luxury) both;
}
.hero-badge::before {
	content: ''; width: 6px; height: 6px;
	background: var(--gold); border-radius: 50%;
	animation: pulse-dot 2s ease infinite;
}
.hero h1 {
	font-family: var(--font-body);
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 600; line-height: 1.1;
	color: var(--champagne); margin-bottom: 24px;
	animation: fadeUp 0.9s var(--ease-luxury) 0.15s both;
}
.hero h1 em { font-style: italic; color: var(--gold); position: relative; }
.hero h1 em::after {
	content: ''; position: absolute; bottom: 3px; left: 0;
	width: 100%; height: 1.5px;
	background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-desc {
	font-size: 17px; line-height: 1.7;
	color: rgba(245,237,227,0.65);
	max-width: 480px; margin-bottom: 36px;
	animation: fadeUp 0.9s var(--ease-luxury) 0.3s both;
}
.hero-ctas {
	display: flex; gap: 14px; flex-wrap: wrap;
	margin-bottom: 52px;
	animation: fadeUp 0.9s var(--ease-luxury) 0.45s both;
}
.hero-trust { display: flex; gap: 36px; animation: fadeUp 0.9s var(--ease-luxury) 0.6s both; }
.hero-trust-item { display: flex; flex-direction: column; gap: 3px; }
.hero-trust-num  { font-family: var(--font-body); font-size: 30px; font-weight: 700; color: var(--gold); }
.hero-trust-label { font-size: 11px; color: rgba(245,237,227,0.45); letter-spacing: 0.5px; text-transform: uppercase; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeUp 0.9s var(--ease-luxury) 0.2s both; }
.hero-img-main {
	width: 420px; height: 530px; border-radius: 16px;
	background: linear-gradient(145deg, #5C3418, #7E4B28, #3D200A);
	position: relative; overflow: hidden;
	box-shadow: 0 48px 96px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.15);
	display: flex; align-items: center; justify-content: center;
}
.hero-img-main .leather-texture {
	position: absolute; inset: 0; opacity: 0.12;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================================
   10. SERVICES GRID + CARDS (non-Gutenberg — bridge.css handles .wp-block-group versions)
   ============================================================================ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 1100px;
	margin: 0 auto;
}

.service-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(139,94,60,0.12);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	display: flex;
	flex-direction: column;
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 70px rgba(26,18,11,0.12);
	border-color: rgba(139,94,60,0.35);
}

.service-card-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	position: relative;
	overflow: hidden;
}
.service-card-img img {
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	display: block;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body {
	width: 100%;
	padding: 18px 22px 20px;
	display: flex; flex-direction: column;
}
.service-card-body h3 {
	font-family: var(--font-body);
	font-size: 18px; font-weight: 600;
	margin-bottom: 6px;
	color: var(--espresso);
	line-height: 1.25;
	letter-spacing: -0.2px;
}
.service-card-body p {
	font-size: 13px;
	color: var(--warm-gray);
	line-height: 1.5;
	margin-bottom: 12px;
}
.service-card-link {
	font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
	text-transform: uppercase;
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--cognac);
	transition: gap 0.3s ease;
}
.service-card:hover .service-card-link { gap: 12px; }

.svc-icon-wrap { width: 72px; height: 72px; border-radius: 50%; background: rgba(139,94,60,0.08); display: flex; align-items: center; justify-content: center; transition: all 0.5s var(--ease-luxury); }
.service-card:hover .svc-icon-wrap { background: var(--cognac); transform: scale(1.1); }
.svc-icon { width: 32px; height: 32px; color: var(--cognac); transition: color 0.3s; }
.service-card:hover .svc-icon { color: white; }


/* ============================================================================
   12. PROCESS / TRUST / TESTIMONIALS / VIDEO
   ============================================================================ */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-track::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--cognac), var(--gold)); opacity: 0.25; }
.proc-step { text-align: center; padding: 0 16px; }
.proc-num { width: 72px; height: 72px; border-radius: 50%; background: var(--espresso); color: var(--gold); font-family: var(--font-body); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; border: 4px solid var(--ivory); box-shadow: 0 4px 20px rgba(26,18,11,0.12); }
.proc-title { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 8px; color: #60091A; }
.proc-desc  { font-size: 14px; color: #60091A; opacity: 0.75; line-height: 1.55; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background:#101010;
  border: 2px solid #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.trust-card:hover {
  background: rgba(201,169,110,0.1);
  transform: translateY(-4px);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background:#101010;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.trust-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.section-dark .trust-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,169,110,0.12);
}

.section-dark .trust-card h4 {
  color: var(--champagne);
}

.section-dark .trust-card p {
  color: rgba(245,237,227,0.55);
}

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background:#101010; border: 1px solid #ffffff; border-radius: 16px; padding: 32px; transition: all 0.3s ease; }
.testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,169,110,0.25); }
.testi-stars { color: #ffffff; font-size: 14px; letter-spacing: 1.5px; margin-bottom: 16px; }
.testi-text  { font-size: 15px; line-height: 1.7; color: rgba(245,237,227,0.82); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--cognac), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 14px; font-weight: 100; color: white; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--champagne); }
.testi-city { font-size: 12px; color: rgba(245,237,227,0.45); }
.testi-badge { display: inline-block; background: rgba(33,124,84,0.2); color: var(--green-trust); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-top: 5px; letter-spacing: 0.5px; }
.testi-avatar-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

/* ============================================================================
   13. STATS BAR / MEDIA / CTA BLOCK (standalone — bridge.css has Gutenberg version)
   ============================================================================ */
.stats-bar { background: var(--deep-red); padding: 60px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(245,237,227,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-body); font-size: clamp(36px, 4vw, 52px); font-weight: 400; color:#ffffff; }
.stat-lbl { font-size: 13px; color: rgba(245,237,227,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

.cta-block {
	background:#101010;
	border-radius: 24px; padding: 72px 64px;
	text-align: center; position: relative; overflow: hidden;
	margin: 0 32px;
}
.cta-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(96,9,26,0.3) 0%, transparent 70%); pointer-events: none; }
.cta-block h2 { font-family: var(--font-body); font-size: clamp(30px, 4vw, 48px); font-weight: 400; color: var(--champagne); margin-bottom: 16px; position: relative; z-index: 2; }
.cta-block p  { font-size: 17px; color: rgba(245,237,227,0.6); margin-bottom: 40px; position: relative; z-index: 2; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-reassurance { display: flex; gap: 32px; justify-content: center; margin-top: 28px; position: relative; z-index: 2; }
.cta-reassurance span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(245,237,227,0.5); }
.cta-reassurance svg  { width: 15px; height: 15px; color: var(--deep-green); }




/* ============================================================================
   15. SERVICES PAGE (services-page-grid + service-pair-card)
   ============================================================================ */
.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-page-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--light-gray); transition: all 0.5s var(--ease-luxury); cursor: pointer; }
.service-page-card:hover { transform: translateY(-8px); box-shadow: 0 32px 72px rgba(26,18,11,0.1); border-color: rgba(139,94,60,0.25); }
.spc-image { height: 280px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.spc-image .overlay, .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,11,0.6), transparent); }
.spc-body { padding: 32px 36px; }
.spc-body h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.spc-body p  { font-size: 15px; color: var(--warm-gray); line-height: 1.65; margin-bottom: 20px; }
.spc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.spc-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--espresso); }
.spc-feature svg { width: 16px; height: 16px; color: var(--deep-green); flex-shrink: 0; }

.services-pairs-grid { display: flex; flex-direction: column; gap: 40px; }
.service-pair-card {
	display: grid; grid-template-columns: 1fr 1fr;
	background: var(--white); border-radius: 20px; overflow: hidden;
	border: 1px solid var(--light-gray);
	box-shadow: 0 4px 24px rgba(26,18,11,0.05);
	transition: box-shadow 0.4s ease;
}
.service-pair-card:hover { box-shadow: 0 16px 48px rgba(26,18,11,0.1); }
.service-pair-card .spc-half:first-child { border-right: 1px solid var(--light-gray); }
.spc-half { display: flex; flex-direction: column; }
.spc-half-img { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spc-half-img .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,11,0.55), transparent); }
.spc-half-img-inner { position: relative; z-index: 2; text-align: center; }
.spc-emoji { font-size: 48px; margin-bottom: 10px; display: block; }
.spc-cat { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.spc-half-body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.spc-half-body h3 { font-family: var(--font-body); font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--espresso); }
.spc-half-body p  { font-size: 14px; color: var(--warm-gray); line-height: 1.65; margin-bottom: 16px; }
.spc-half-body .spc-features { margin-bottom: 0; flex: 1; }
.spc-half-body .spc-feature { font-size: 13px; }




/* ============================================================================
   19. BLOG / SIDEBAR / POST CONTENT / AUTHOR / 404
   ============================================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-grid   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--light-gray); transition: all 0.4s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,18,11,0.09); }
.blog-card-img { height: 220px; overflow: hidden; background: linear-gradient(135deg, var(--espresso), var(--cognac)); position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat { position: absolute; top: 14px; left: 14px; background: var(--espresso); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--espresso); transition: color 0.3s; }
.blog-card-body h3 a:hover { color: var(--cognac); }
.blog-card-body p { font-size: 13px; color: var(--warm-gray); line-height: 1.5; margin-bottom: 14px; }
.blog-read-more { font-size: 12px; font-weight: 700; color: var(--cognac); letter-spacing: 1px; text-transform: uppercase; }
.blog-meta { font-size: 13px; color: var(--warm-gray); margin-bottom: 10px; display: flex; gap: 12px; }

.blog-featured { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--light-gray); margin-bottom: 32px; cursor: pointer; transition: all 0.4s ease; }
.blog-featured:hover { box-shadow: 0 24px 60px rgba(26,18,11,0.1); }
.blog-feat-img { height: 380px; background: linear-gradient(135deg, var(--espresso), var(--cognac)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-feat-img .blog-category { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--espresso); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; }
.blog-feat-content { padding: 36px 40px; }
.blog-feat-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
.blog-feat-content p  { font-size: 15px; color: var(--warm-gray); line-height: 1.65; }

/* Sidebar */
.sidebar .widget { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--light-gray); margin-bottom: 24px; }
.sidebar .widget-title, .sidebar .widgettitle { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--light-gray); }
.sidebar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar ul li a { font-size: 14px; color: var(--espresso); transition: color 0.2s; display: flex; justify-content: space-between; }
.sidebar ul li a:hover { color: var(--cognac); }

/* Post content */
.post-content h2, .post-content h3 { font-family: var(--font-display); font-weight: 600; margin: 1.5em 0 .5em; }
.post-content p  { font-size: 16px; line-height: 1.75; margin-bottom: 1.25em; }
.post-content ul, .post-content ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: .4em; line-height: 1.65; font-size: 16px; }
.post-content blockquote { border-left: 4px solid var(--gold); padding: 1em 1.5em; margin: 2em 0; font-family: var(--font-display); font-size: 1.1em; font-style: italic; color: var(--cognac); background: var(--cream); border-radius: 0 12px 12px 0; }
.post-content a   { color: var(--cognac); }
.post-content img { border-radius: 12px; margin: 1.5em 0; max-width: 100%; }

/* Author */
.author-box { display: flex; gap: 20px; background: var(--cream); border-radius: 16px; padding: 28px; margin: 40px 0; }
.author-box img { border-radius: 50%; width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
.author-box h4  { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.author-box p   { font-size: 14px; color: var(--warm-gray); line-height: 1.5; }

/* ══════════════════════════════════════
   404 PAGE
══════════════════════════════════════ */

@keyframes heartbeat {
  0%,100%{transform:scale(1)}
  14%{transform:scale(1.3)}
  28%{transform:scale(1)}
  42%{transform:scale(1.2)}
  56%{transform:scale(1)}
}
@keyframes fadeUp {
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes float {
  0%,100%{transform:translateY(0px)}
  50%{transform:translateY(-8px)}
}
@keyframes glowPulse {
  0%,100%{text-shadow:0 0 20px rgba(218,97,49,0.4)}
  50%{text-shadow:0 0 40px rgba(218,97,49,0.9),0 0 60px rgba(218,97,49,0.4)}
}
@keyframes particleFly {
  0%{opacity:0;transform:translate(0,0) scale(0)}
  50%{opacity:1}
  100%{opacity:0;transform:translate(var(--dx),var(--dy)) scale(1)}
}
@keyframes cursorBlink {
  50%{border-color:transparent}
}

.tll-404-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: #FAF6F0;
  position: relative;
  overflow: hidden;
}

/* Particles */
.tll-404-wrap::before,
.tll-404-wrap::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DA6131;
  animation: particleFly 3s ease-out infinite;
  opacity: 0;
}
.tll-404-wrap::before {
  top: 15%;
  left: 10%;
  --dx: -40px;
  --dy: -60px;
}
.tll-404-wrap::after {
  top: 60%;
  right: 9%;
  --dx: 45px;
  --dy: 35px;
  animation-delay: 1.5s;
  background: #60091A;
}

/* Heart */
.tll-404-heart {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(218,97,49,0.35));
}

/* 404 Number */
.tll-404-num {
  font-size: clamp(72px, 14vw, 110px);
  font-weight: 500;
  color: #1A120B;
  line-height: 1;
  letter-spacing: -4px;
  margin: 0 0 16px;
  animation: fadeUp 0.6s ease both 0.1s;
  font-family: var(--font-display, Georgia, serif);
}
.tll-404-num span {
  color: #DA6131;
  display: inline-block;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Heading */
.tll-404-heading {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  color: #1A120B;
  margin: 0 0 10px;
  animation: fadeUp 0.6s ease both 0.3s;
  font-family: var(--font-display, Georgia, serif);
}

/* Subtext */
.tll-404-sub {
  font-size: 15px;
  color: #60091A;
  line-height: 1.7;
  max-width: 380px;
  margin: 0 0 28px;
  animation: fadeUp 0.6s ease both 0.5s;
}

/* Dev Badge */
.tll-404-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(96,9,26,0.15);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease both 0.7s;
}
.tll-404-badge-label {
  font-size: 12px;
  color: #888;
}
.tll-404-dev-name {
  font-size: 15px;
  font-weight: 600;
  color: #DA6131;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #DA6131;
  max-width: 0;
  display: inline-block;
  vertical-align: middle;
  animation: cursorBlink 0.8s step-end infinite 2.2s;
}

/* Phone */
.tll-404-phone {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both 0.9s;
}
.tll-404-phone strong {
  color: #1A120B;
  font-weight: 600;
}

/* Search form */
.tll-404-wrap .search-form {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 360px;
  animation: fadeUp 0.6s ease both 1s;
}
.tll-404-wrap .search-field {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  border: 1px solid rgba(96,9,26,0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #1A120B;
  outline: none;
}
.tll-404-wrap .search-field:focus {
  border-color: #60091A;
}
.tll-404-wrap .search-submit {
  padding: 10px 18px;
  background: #60091A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.tll-404-wrap .search-submit:hover {
  background: #7a0f22;
}

/* Buttons */
.tll-404-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s ease both 1.1s;
}

/* ============================================================================
   20. PAGINATION / SEARCH / FILTER / TIMELINE
   ============================================================================ */
.page-numbers {
	padding: 10px 16px; border-radius: 8px;
	font-size: 14px; font-weight: 600;
	border: 1.5px solid var(--light-gray); color: var(--espresso);
	transition: all 0.25s;
}
.page-numbers:hover { border-color: var(--cognac); color: var(--cognac); }
.page-numbers.current { background: var(--espresso); color: var(--gold); border-color: var(--espresso); }
.pagination, nav.navigation { display: flex; gap: 8px; justify-content: center; margin: 48px 0; flex-wrap: wrap; }

.search-form { display: flex; gap: 10px; margin-bottom: 32px; }
.search-field { flex: 1; padding: 12px 16px; border: 1.5px solid var(--light-gray); border-radius: 8px; font-size: 15px; font-family: var(--font-body); outline: none; }
.search-field:focus { border-color: var(--cognac); }
.search-submit { padding: 12px 24px; background: var(--espresso); color: var(--gold); border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
/* Sidebar Search Widget — prevent button overflow */
.sidebar .search-form,
.widget_search .search-form,
aside .widget .search-form,
.blog-sidebar .search-form {
    flex-direction: column !important;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}
.sidebar .search-form label,
.widget_search .search-form label,
aside .widget .search-form label,
.blog-sidebar .search-form label {
    width: 100%;
    display: block;
    margin: 0;
    font-size: 13px;
    color: var(--warm-gray);
}
.sidebar .search-field,
.widget_search .search-field,
aside .widget .search-field,
.blog-sidebar .search-field {
    width: 100% !important;
    box-sizing: border-box !important;
    flex: none !important;
    min-width: 0;
}
.sidebar .search-submit,
.widget_search .search-submit,
aside .widget .search-submit,
.blog-sidebar .search-submit {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
}

.filter-tab { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--warm-gray); background: transparent; cursor: pointer; transition: all 0.25s; font-family: var(--font-body); }
.filter-tab:hover { background: var(--cream); color: var(--espresso); }
.filter-tab.active { background: var(--espresso); color: var(--gold); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-year { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--cognac); padding-top: 4px; }
.timeline-dot  { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--ivory); box-shadow: 0 0 0 2px var(--cognac); position: absolute; left: 43px; top: 6px; }
.timeline-content h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.timeline-content p  { font-size: 14px; color: var(--warm-gray); line-height: 1.5; }


/* ============================================================================
   21. WP ALIGNMENT & UTILITIES
   ============================================================================ */
.alignleft   { float: left;  margin-right: 1.5em; margin-bottom: 1em; }
.alignright  { float: right; margin-left:  1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption-text { font-size: 13px; color: var(--warm-gray); text-align: center; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 6px; top: 6px; z-index: 9999; background: var(--gold); color: var(--espresso); padding: 10px 20px; border-radius: 6px; font-weight: 700; }



/* ============================================================================
   24. RESPONSIVE (header rules → header.php inline; ticker rules → bridge.css)
   ============================================================================ */

/* ─── 1024px / TABLET ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.hero-inner               { grid-template-columns: 1fr; gap: 40px; }
	.hero-visual              { display: none; }
	.services-grid,
	.trust-grid               { grid-template-columns: repeat(2, 1fr); }
	.testi-grid               { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
	.founder-grid             { grid-template-columns: 1fr; }
	.footer-grid              { grid-template-columns: 1fr 1fr; gap: 32px; }
	.blog-layout              { grid-template-columns: 1fr; }
	.blog-sidebar             { display: flex; flex-direction: column; gap: 20px; }
	.stats-inner              { grid-template-columns: repeat(2, 1fr); }
	.services-page-grid       { grid-template-columns: 1fr; }
	.svc-single-grid          { grid-template-columns: 1fr; }
	.svc-single-grid .spc-image { height: 260px; }

	.blog-sidebar,
	.contact-form-wrap        { position: static; top: auto; }
}

/* ─── 768px / MOBILE — main stacking ────────────────────────────────── */
@media (max-width: 768px) {

	body .container,
	body .tll-wrap            { padding-left: 16px; padding-right: 16px; max-width: 100%; }

	.section                  { padding: 44px 0; }

	/* Hero */
	.hero h1                  { font-size: clamp(24px, 6vw, 36px); line-height: 1.1; }
	.hero-desc                { font-size: 14.5px; line-height: 1.6; }
	.hero-ctas                { flex-direction: column; align-items: stretch; gap: 10px; }
	.hero-ctas .btn-primary,
	.hero-ctas .btn-outline,
	.hero-ctas .btn-outline-light { width: 100%; justify-content: center; padding: 13px 16px; font-size: 13px; }

	/* Page hero */
	.page-hero                { padding: 70px 16px 38px; }
	.page-hero h1,
	.page-hero-title          { font-size: clamp(22px, 7vw, 32px); line-height: 1.1; }
	.page-hero p,
	.page-hero-sub            { font-size: 14px; line-height: 1.6; }

	/* All grids → 1 column */
	.services-grid,
	.services-page-grid,
	.services-pairs-grid,
	.service-pair-card,
	.ba-grid,
	.ba-full-grid,
	.blog-grid,
	.trust-grid,
	.testi-grid,
	.stats-inner,
	.process-track,
	.city-grid,
	.footer-grid              { grid-template-columns: 1fr; gap: 16px; }

	.process-track            { row-gap: 32px; }
	.process-track::before    { display: none; }

	.service-pair-card .spc-half:first-child { border-right: none; border-bottom: 1px solid var(--light-gray); }
	.spc-half-img            { height: 176px; }
	.spc-half-body           { padding: 22px 18px 24px; }
	.service-card-img         { aspect-ratio: 4 / 5; }
	.service-card-body        { padding: 16px 20px 18px; }
	.contact-info-card,
	.contact-form-wrap,
	.trust-card,
	.testi-card               { padding: 22px 18px; border-radius: 16px; }

	.btn-primary,
	.btn-secondary,
	.btn-outline,
	.btn-outline-light,
	.btn-submit               { width: 100%; justify-content: center; padding: 13px 16px; font-size: 13px; min-height: 44px; }

	.pricing-card.featured    { transform: scale(1); }

	.cta-block                { padding: 48px 24px; margin: 0 16px; border-radius: 16px; }
	.cta-block h2             { font-size: 22px; }

	.footer-bottom            { flex-direction: column; gap: 12px; text-align: center; }

	.author-box               { flex-direction: column; }

	table, .wp-block-table    { display: block; width: 100%; overflow-x: auto; }
}

/* ─── 480px / SMALL PHONES ──────────────────────────────────────────── */
@media (max-width: 480px) {

	body .container,
	body .tll-wrap            { padding-left: 14px; padding-right: 14px; }

	.section                  { padding: 38px 0; }

	.hero h1,
	.page-hero h1,
	.page-hero-title          { font-size: clamp(20px, 7.5vw, 28px); }

	.stats-inner              { grid-template-columns: 1fr; }

	.cta-block                { padding: 24px 16px; }

	.contact-info-card,
	.contact-form-wrap        { padding: 18px 14px; }

	.wa-float                 { bottom: 16px; right: 16px; width: 50px; height: 50px; }

	.service-pair-card .spc-half-img { height: 166px; }
}

/* ─── 380px / TINY PHONES ───────────────────────────────────────────── */
@media (max-width: 380px) {

	body .container,
	body .tll-wrap            { padding-left: 12px; padding-right: 12px; }

	.page-hero h1,
	.page-hero-title          { font-size: 22px; }

	.service-pair-card .spc-half-body,
	.service-card-body        { padding-left: 16px; padding-right: 16px; }
}

/* Force no underline on all links and buttons */
a, a:hover, a:focus, a:visited,
button, button:hover,
.btn, .btn:hover,
.sub-cta, .sub-card a, .sub-card a *,
.service-card-link, .blog-read-more,
.ssp-btn, .btn-svc-learn, .btn-svc-wa {
  text-decoration: none !important;
}

