/**
 * Theme Name:        Suncoast
 * Theme URI:         https://suncoastkb.com
 * Description:       Custom theme for Suncoast Kitchen & Bath -- Orange County kitchen and bathroom remodeling.
 * Version:           1.1.6
 * Author:            Suncoast Kitchen & Bath
 * Author URI:        https://suncoastkb.com
 * Tested up to:      7.0
 * Requires at least: 6.5
 * Requires PHP:      8.0
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
	/* Brand Colors */
	--skb-charcoal: #2C2C2C;
	--skb-dark: #1A1A1A;
	--skb-gold: #C9A96E;
	--skb-gold-dark: #8B6D3F;
	--skb-off-white: #FAF8F5;
	--skb-white: #FFFFFF;
	--skb-body: #6B7280;
	--skb-brown: #3E2723;
	--skb-green: #16A34A;

	/* Shadows */
	--skb-shadow: rgba(44, 44, 44, 0.08);
	--skb-shadow-hover: rgba(44, 44, 44, 0.12);

	/* Transitions */
	--skb-ease: cubic-bezier(0.32, 0.72, 0, 1);
	--skb-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

	/* Radii */
	--skb-radius-lg: 16px;
	--skb-radius-md: 10px;
	--skb-radius-sm: 6px;

	/* Spacing */
	--skb-section-pad: 100px;
	--skb-section-pad-mobile: 56px;
	--skb-container-max: 1140px;
	--skb-container-narrow: 780px;
}

/* ==========================================================================
   2. CSS RESET
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: var(--skb-charcoal);
	background: var(--skb-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--skb-charcoal);
}

h1 {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(24px, 3.5vw, 38px);
}

h3 {
	font-size: clamp(18px, 2vw, 24px);
}

p {
	max-width: 65ch;
	color: var(--skb-body);
}

/* ==========================================================================
   4. LAYOUT -- CONTAINERS & SECTIONS
   ========================================================================== */

.skb-container {
	max-width: var(--skb-container-max);
	margin: 0 auto;
	padding: 0 24px;
}

.skb-container--narrow {
	max-width: var(--skb-container-narrow);
	margin: 0 auto;
	padding: 0 24px;
}

.skb-section {
	padding: var(--skb-section-pad) 24px;
}

.skb-section--alt {
	background: var(--skb-off-white);
}

.skb-section--white {
	background: var(--skb-white);
}

.skb-section--dark {
	background: var(--skb-charcoal);
	color: var(--skb-white);
}

.skb-section--dark h2,
.skb-section--dark h3 {
	color: var(--skb-white);
}

.skb-section--dark p {
	color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   5. SHARED COMPONENTS
   ========================================================================== */

/* --- Section Headers --- */
.skb-section-title {
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 600;
	color: var(--skb-charcoal);
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.skb-section-title--center {
	text-align: center;
}

.skb-accent-line {
	display: block;
	height: 3px;
	width: 48px;
	background: var(--skb-gold);
	border: none;
	margin-top: 0;
}

.skb-accent-line--center {
	margin-left: auto;
	margin-right: auto;
}

/* --- Buttons --- */
.skb-btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: var(--skb-radius-sm);
	font-size: 17px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: all 0.3s var(--skb-ease);
}

.skb-btn--gold {
	background: var(--skb-gold-dark);
	color: var(--skb-white);
}

.skb-btn--gold:hover {
	background: #7a5f36;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(139, 109, 63, 0.3);
}

.skb-btn--gold:active {
	transform: scale(0.98);
}

.skb-btn--outline {
	background: transparent;
	color: var(--skb-white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.skb-btn--outline:hover {
	border-color: var(--skb-white);
	background: rgba(255, 255, 255, 0.05);
}

/* Outline buttons on LIGHT sections need dark text/border (white-on-light was invisible). */
.skb-section--alt .skb-btn--outline,
.skb-section--white .skb-btn--outline {
	color: var(--skb-charcoal);
	border-color: rgba(44, 44, 44, 0.25);
}

.skb-section--alt .skb-btn--outline:hover,
.skb-section--white .skb-btn--outline:hover {
	border-color: var(--skb-charcoal);
	background: rgba(44, 44, 44, 0.04);
}

/* --- Default CTA section (reusable site-wide; mirrors the homepage CTA) --- */
.skb-cta-section {
	background: var(--skb-charcoal);
	padding: 100px 24px;
	margin-top: -1px;
	text-align: center;
	color: var(--skb-white);
}
.skb-cta-section h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	color: var(--skb-white);
}
.skb-cta-section p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 auto 36px;
	max-width: 50ch;
}
.skb-cta-phone {
	color: rgba(255, 255, 255, 0.4);
	font-size: 14px;
	margin-top: 28px;
}
.skb-cta-phone a {
	color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1024px) {
	.skb-cta-section {
		padding: 56px 20px;
	}
}

/* --- Double-Bezel Component --- */
.skb-bezel {
	background: rgba(44, 44, 44, 0.03);
	border: 1px solid rgba(44, 44, 44, 0.05);
	border-radius: 24px;
	padding: 8px;
}

.skb-bezel-inner {
	background: var(--skb-white);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
	            0 20px 40px -15px var(--skb-shadow);
	overflow: hidden;
}

/* --- Cards (shared base) --- */
.skb-card {
	border-radius: var(--skb-radius-lg);
	overflow: hidden;
	transition: box-shadow 0.4s var(--skb-ease), transform 0.4s var(--skb-ease);
	box-shadow: 0 20px 40px -15px var(--skb-shadow);
	background: var(--skb-white);
}

.skb-card:hover {
	box-shadow: 0 25px 50px -12px var(--skb-shadow-hover);
	transform: translateY(-3px);
}

.skb-card-body {
	padding: 28px;
	background: var(--skb-white);
}

.skb-card h3 {
	font-weight: 600;
	color: var(--skb-charcoal);
	margin-bottom: 12px;
}

.skb-card p {
	font-size: 15px;
	color: var(--skb-body);
	margin-bottom: 20px;
}

.skb-card-link {
	color: var(--skb-gold-dark);
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.skb-card-link .arrow-icon {
	transition: transform 0.3s var(--skb-ease);
}

.skb-card-link:hover .arrow-icon {
	transform: translate(2px, -1px) scale(1.05);
}

/* --- Image Placeholder --- */
.skb-img-placeholder {
	background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a8a49c;
	font-size: 13px;
	min-height: 100px;
}

/* --- Scroll Reveal --- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	filter: blur(4px);
	transition: opacity 0.7s var(--skb-ease),
	            transform 0.7s var(--skb-ease),
	            filter 0.7s var(--skb-ease);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }

/* --- Skip to Content (accessibility) --- */
.skb-skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 10000;
	padding: 12px 24px;
	background: var(--skb-charcoal);
	color: var(--skb-white);
	font-weight: 600;
}

.skb-skip-link:focus {
	top: 0;
}

/* ==========================================================================
   6. SITE HEADER
   ========================================================================== */

.skb-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--skb-dark);
	transition: transform 0.3s var(--skb-ease), background 0.3s var(--skb-ease);
	will-change: transform;
	backface-visibility: hidden;
}

.skb-site-header.skb-header--hidden {
	transform: translateY(-100%);
}

.skb-header-inner {
	max-width: var(--skb-container-max);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

/* Logo */
.skb-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.skb-logo a {
	display: flex;
	align-items: center;
}

.skb-logo img {
	max-height: 48px;
	width: auto;
}

.skb-logo-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--skb-white);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Navigation */
.skb-nav {
	display: flex;
	align-items: center;
}

.skb-nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
}

.skb-nav-list li {
	position: relative;
}

.skb-nav-list a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: 500;
	padding: 8px 0;
	transition: color 0.2s var(--skb-ease);
}

.skb-nav-list a:hover,
.skb-nav-list .current-menu-item > a,
.skb-nav-list .current_page_item > a {
	color: var(--skb-white);
}

/* Dropdown */
.skb-nav-list .sub-menu {
	position: absolute;
	top: 100%;
	left: -16px;
	min-width: 220px;
	padding: 8px 0;
	background: var(--skb-dark);
	border-radius: var(--skb-radius-sm);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.25s var(--skb-ease);
}

.skb-nav-list li:hover > .sub-menu,
.skb-nav-list li.skb-dropdown-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.skb-nav-list .sub-menu a {
	display: block;
	padding: 10px 24px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.skb-nav-list .sub-menu a:hover {
	color: var(--skb-white);
	background: rgba(255, 255, 255, 0.05);
}

/* Header CTA */
.skb-header-cta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: 32px;
}

.skb-header-phone {
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	font-weight: 600;
	transition: color 0.2s var(--skb-ease);
}

.skb-header-phone:hover {
	color: var(--skb-white);
}

.skb-header-btn {
	display: inline-block;
	padding: 10px 20px;
	background: var(--skb-gold-dark);
	color: var(--skb-white);
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--skb-radius-sm);
	transition: background 0.2s var(--skb-ease);
}

.skb-header-btn:hover {
	background: #7a5f36;
}

/* Mobile Menu Toggle */
.skb-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.skb-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--skb-white);
	transition: transform 0.3s var(--skb-ease), opacity 0.3s var(--skb-ease);
}

.skb-menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.skb-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.skb-menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Header spacer (pushes content below fixed header + contact bar) */
.skb-header-spacer {
	height: 120px; /* 72px header + 48px contact bar */
	background: var(--skb-charcoal);
	margin-bottom: -1px; /* prevent subpixel gap */
}

/* ==========================================================================
   6b. CONTACT BAR (below header)
   ========================================================================== */

.skb-contact-bar {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	z-index: 999;
	background: var(--skb-charcoal);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.3s var(--skb-ease);
	will-change: transform;
	backface-visibility: hidden;
}

.skb-contact-bar-inner {
	max-width: var(--skb-container-max);
	margin: 0 auto;
	padding: 8px 24px;
	text-align: center;
}

.skb-contact-bar-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.skb-contact-bar-form input {
	height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--skb-radius-sm);
	background: rgba(255, 255, 255, 0.06);
	color: var(--skb-white);
	font-size: 13px;
	font-family: inherit;
	width: 160px;
	transition: border-color 0.2s var(--skb-ease);
}

.skb-contact-bar-form input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.skb-contact-bar-form input:focus {
	outline: none;
	border-color: var(--skb-gold);
	background: rgba(255, 255, 255, 0.1);
}

/* Name field wider so longer full names stay visible while typing. */
.skb-contact-bar-form input[type="text"] {
	width: 220px;
}

/* Email needs more room than name/phone -- a normal-length address was clipped. */
.skb-contact-bar-form input[type="email"] {
	width: 230px;
}

.skb-contact-bar-btn {
	height: 34px;
	padding: 0 20px;
	background: var(--skb-gold-dark);
	color: var(--skb-white);
	font-size: 13px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	border: none;
	border-radius: var(--skb-radius-sm);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s var(--skb-ease);
}

.skb-contact-bar-btn:hover {
	background: #7a5f36;
}

.skb-contact-bar-disclaimer {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.35);
	margin: 4px auto 0;
	line-height: 1.3;
	max-width: 640px;
	text-align: center;
}

.skb-contact-bar-disclaimer a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.skb-contact-bar-disclaimer a:hover {
	color: var(--skb-gold);
}

/* Scroll state: header hidden, contact bar slides to top */
.skb-header--hidden ~ .skb-contact-bar {
	transform: translateY(-72px);
}

/* ==========================================================================
   7. SITE FOOTER
   ========================================================================== */

.skb-site-footer {
	background: var(--skb-charcoal);
	color: rgba(255, 255, 255, 0.7);
	padding: 80px 24px 0;
	margin-top: -1px;    /* prevent subpixel gap from body bg bleed */
}

.skb-footer-grid {
	max-width: var(--skb-container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 48px;
}

.skb-footer-col h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--skb-white);
	margin-bottom: 20px;
}

.skb-footer-brand {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--skb-white);
	margin-bottom: 12px;
}

.skb-footer-license {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 8px;
}

.skb-footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.skb-footer-col a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	transition: color 0.2s var(--skb-ease);
}

.skb-footer-col a:hover {
	color: var(--skb-white);
}

.skb-footer-contact-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 15px;
}

.skb-footer-contact-item svg {
	flex-shrink: 0;
	color: var(--skb-gold);
	margin-top: 2px;
}

.skb-footer-bottom {
	max-width: var(--skb-container-max);
	margin: 48px auto 0;
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

.skb-footer-legal a {
	color: rgba(255, 255, 255, 0.4);
	margin-left: 24px;
}

.skb-footer-legal a:hover {
	color: rgba(255, 255, 255, 0.7);
}

/* --- Mobile Sticky CTA Bar --- */
.skb-mobile-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: var(--skb-dark);
	padding: 12px 16px;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.skb-mobile-cta a {
	flex: 1;
	text-align: center;
	padding: 14px 0;
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--skb-radius-sm);
}

.skb-mobile-cta-call {
	background: transparent;
	color: var(--skb-white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.skb-mobile-cta-estimate {
	background: var(--skb-gold-dark);
	color: var(--skb-white);
}

/* ==========================================================================
   8. WORDPRESS CONTENT STYLES
   ========================================================================== */

/* Ensure editor content renders full-width */
.entry-content,
.skb-content {
	max-width: 100%;
}

/* WordPress alignment classes */
.alignwide {
	max-width: var(--skb-container-max);
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
	margin-right: 24px;
	margin-bottom: 16px;
}

.alignright {
	float: right;
	margin-left: 24px;
	margin-bottom: 16px;
}

/* WordPress generated classes */
.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 14px;
	color: var(--skb-body);
	margin-top: 8px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal;
}

.screen-reader-text:focus {
	clip: auto;
	display: block;
	height: auto;
	width: auto;
	position: static;
}

/* ==========================================================================
   9. RESPONSIVE -- GLOBAL
   ========================================================================== */

@media (max-width: 1024px) {
	:root {
		--skb-section-pad: 76px;
	}

	/* Collapse nav to the hamburger at 1024 (was 768 -- in the 769-1024 band the
	   desktop nav + phone + CTA + contact bar overflowed with no hamburger fallback). */

	/* Hide the contact bar; the mobile sticky CTA handles lead capture below 1024. */
	.skb-contact-bar {
		display: none;
	}

	.skb-header-spacer {
		height: 72px; /* No contact bar below 1024 */
	}

	/* Keep the header (logo + hamburger) locked at the top on mobile/tablet --
	   do NOT hide it on scroll-down the way the desktop header does. */
	.skb-site-header {
		/* Critical: the base rule sets will-change:transform, which makes this
		   header a containing block for position:fixed descendants. That trapped
		   the fixed mobile nav overlay -- it measured top:72px/bottom:0 against the
		   ~72px header instead of the viewport, collapsing it into a tiny scrollable
		   sliver (the "menu only opens a little, scroll for the rest" bug). The
		   header never transforms on mobile, so drop will-change here and the nav
		   fills the screen again. */
		will-change: auto;
	}

	.skb-site-header.skb-header--hidden {
		transform: none;
	}

	.skb-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--skb-dark);
		flex-direction: column;
		padding: 32px 24px;
		transform: translateX(100%);
		transition: transform 0.3s var(--skb-ease);
		overflow-y: auto;
	}

	.skb-nav.skb-nav--open {
		transform: translateX(0);
	}

	.skb-nav-list {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.skb-nav-list li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.skb-nav-list a {
		display: block;
		padding: 16px 0;
		font-size: 18px;
	}

	/* Show the Services sub-links (Kitchen, Bathroom, Full Renovations) inline and
	   always visible in the mobile overlay -- no extra tap, nothing hidden. */
	.skb-nav-list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		padding: 0 0 0 16px;
		display: block;
	}

	.skb-nav-list .sub-menu a {
		padding: 12px 0;
		font-size: 16px;
	}

	.skb-menu-toggle {
		display: flex;
	}

	.skb-header-cta {
		display: none;
	}

	.skb-mobile-cta {
		display: flex;
	}
}

@media (max-width: 768px) {
	:root {
		--skb-section-pad: 56px;
	}

	/* Buttons full-width on mobile */
	.skb-btn {
		padding: 14px 28px;
		font-size: 16px;
		width: 100%;
		text-align: center;
	}

	/* Footer stacked and centered on mobile */
	.skb-footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.skb-footer-col ul {
		align-items: center;
	}

	.skb-footer-contact-item {
		justify-content: center;
	}

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

	.skb-footer-legal a:first-child {
		margin-left: 0;
	}

	/* Add bottom padding for mobile CTA bar */
	.skb-site-footer {
		padding-bottom: 80px;
	}

	/* Bezel mobile adjustments */
	.skb-bezel {
		border-radius: 16px;
		padding: 6px;
	}

	.skb-bezel-inner {
		border-radius: 12px;
	}
}

@media (max-width: 480px) {
	.skb-header-inner {
		height: 60px;
	}

	.skb-header-spacer {
		height: 60px;
	}

	.skb-nav {
		top: 60px;
	}
}