/* ============================================================
   SmartinUpCreations — Main Stylesheet
   ============================================================ */

/* ── Variables ── */
:root {
	--navy:      #1e293b;
	--blue:      #046BD2;
	--cyan:      #00AEEF;
	--cyan-dark: #0090c7;
	--light:     #f8fafc;
	--white:     #ffffff;
	--gray:      #64748b;
	--gray-light:#e2e8f0;
	--text:      #1e293b;
	--font:      'Montserrat', sans-serif;
	--radius:    8px;
	--shadow:    0 4px 24px rgba(4,107,210,0.10);
	--max-w:     1160px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	color: var(--text);
	background: var(--white);
	line-height: 1.6;
	font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--cyan-dark); }

/* ── Container ── */
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1;
}

.btn-primary {
	background: var(--blue);
	color: var(--white);
	border-color: var(--blue);
}
.btn-primary:hover {
	background: var(--cyan-dark);
	border-color: var(--cyan-dark);
	color: var(--white);
}

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

/* ── Section Utility ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--cyan);
	margin-bottom: 12px;
	display: block;
}

.section-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: var(--navy);
	line-height: 1.2;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 17px;
	color: var(--gray);
	max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Header / Nav ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
	box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.logo-icon {
	width: 38px;
	height: 38px;
	background: var(--blue);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.logo-icon svg { width: 22px; height: 22px; }

.logo-text {
	font-size: 17px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.3px;
	line-height: 1.1;
}

.logo-text span {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: var(--cyan);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

/* Nav */
.site-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
}

.site-nav li { list-style: none; }

.site-nav a {
	color: rgba(255,255,255,0.80);
	font-size: 14px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 6px;
	transition: all 0.15s ease;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav li.current-menu-item > a,
.site-nav li.current-page-ancestor > a {
	color: var(--white);
	background: rgba(255,255,255,0.10);
}


/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
	background: none;
	border: none;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: all 0.25s ease;
}

/* ── Hero ── */
.hero {
	background: linear-gradient(135deg, var(--navy) 0%, #0f2044 100%);
	padding: 100px 0 90px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0,174,239,0.12) 0%, transparent 70%);
	pointer-events: none;
}

.hero-content { max-width: 640px; }

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--cyan);
	margin-bottom: 24px;
}

.hero-label::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--cyan);
}

.hero-title {
	font-size: clamp(36px, 5.5vw, 60px);
	font-weight: 800;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 20px;
}

.hero-title .accent { color: var(--cyan); }

.hero-subtitle {
	font-size: 18px;
	color: rgba(255,255,255,0.72);
	max-width: 520px;
	margin-bottom: 36px;
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ── Services ── */
.services { background: var(--light); }

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.service-card {
	background: var(--white);
	border-radius: 12px;
	padding: 36px 28px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border-top: 3px solid transparent;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 36px rgba(4,107,210,0.16);
	border-top-color: var(--cyan);
}

.service-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; color: white; fill: none; stroke: white; stroke-width: 2; }

.service-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
}

.service-card p {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.65;
}

/* ── Projects Grid ── */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.project-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.project-card:hover { box-shadow: var(--shadow); }

.project-card-body { padding: 28px; }

.project-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--blue);
	background: rgba(4,107,210,0.08);
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 12px;
}

.project-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.project-card p {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials { background: var(--light); }

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.testimonial-card {
	background: var(--white);
	border-radius: 12px;
	padding: 32px;
	box-shadow: var(--shadow);
}

.testimonial-text {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-text::before { content: '"'; font-size: 40px; color: var(--cyan); line-height: 0; vertical-align: -14px; margin-right: 4px; }

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
}

.author-info strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
}

.author-info span {
	font-size: 13px;
	color: var(--gray);
}

/* ── CTA Band ── */
.cta-band {
	background: linear-gradient(135deg, var(--navy) 0%, #0f2044 100%);
	padding: 80px 0;
	text-align: center;
}

.cta-band .section-title { color: var(--white); }

.cta-band p {
	font-size: 17px;
	color: rgba(255,255,255,0.72);
	max-width: 520px;
	margin: 0 auto 36px;
}

/* ── Contact Form ── */
.contact-section { background: var(--light); }

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 48px;
}

.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--gray-light);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 15px;
	color: var(--text);
	background: var(--white);
	transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(4,107,210,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.contact-info > p {
	font-size: 15px;
	color: var(--gray);
	margin-bottom: 32px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.contact-item-icon {
	width: 44px;
	height: 44px;
	background: rgba(4,107,210,0.10);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }

.contact-item strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 2px;
}

.contact-item span {
	font-size: 15px;
	color: var(--gray);
}

/* ── Blog / Archive ── */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.post-card:hover { box-shadow: var(--shadow); }

.post-thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--gray-light);
}

.post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.post-card:hover .post-thumb img { transform: scale(1.03); }

.post-card-body { padding: 24px; }

.post-meta {
	font-size: 12px;
	color: var(--cyan-dark);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.post-card h2, .post-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
	line-height: 1.3;
}

.post-card h2 a, .post-card h3 a {
	color: var(--navy);
	text-decoration: none;
}

.post-card h2 a:hover, .post-card h3 a:hover { color: var(--blue); }

.post-card p {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.6;
}

/* ── About Intro Block (homepage) ── */
.about-intro-block { background: var(--light); }

.about-intro-inner { max-width: 640px; }

.about-intro-inner p {
	font-size: 17px;
	color: #374151;
	line-height: 1.8;
	margin-bottom: 8px;
}

/* ── About Page ── */
.about-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 64px;
	align-items: start;
}

.about-photo img {
	width: 100%;
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.about-photo-placeholder {
	width: 100%;
	aspect-ratio: 1;
	background: var(--light);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-light);
}

.about-photo-placeholder svg { width: 80px; height: 80px; }

.about-intro p {
	font-size: 17px;
	color: #374151;
	line-height: 1.8;
	margin-bottom: 18px;
}

.about-intro em { color: var(--blue); font-style: normal; font-weight: 600; }

/* Timeline */
.timeline { max-width: 720px; margin: 0 auto; }

.timeline-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 28px;
	margin-bottom: 40px;
	position: relative;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: 38px;
	top: 44px;
	bottom: -40px;
	width: 2px;
	background: var(--gray-light);
}

.timeline-item:last-child::before { display: none; }

.timeline-marker {
	width: 76px;
	height: 36px;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
	margin-top: 4px;
}

.timeline-content h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.timeline-content p {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.7;
}

.timeline-content a { color: var(--blue); }

/* Brands grid */
.brands-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.brand-card {
	background: var(--white);
	border: 1.5px solid var(--gray-light);
	border-radius: 12px;
	padding: 32px 28px;
	transition: box-shadow 0.2s ease;
}

.brand-card:hover { box-shadow: var(--shadow); }

.brand-card--active {
	border-color: var(--blue);
	background: linear-gradient(135deg, rgba(4,107,210,0.03), rgba(0,174,239,0.03));
}

.brand-card-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.brand-card-icon svg { width: 22px; height: 22px; stroke: white; }

.brand-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.brand-card p {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.65;
	margin-bottom: 16px;
}

.brand-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--blue);
	background: rgba(4,107,210,0.08);
	padding: 4px 10px;
	border-radius: 4px;
}

.brand-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--blue);
	text-decoration: none;
}
.brand-link:hover { color: var(--cyan-dark); }

@media (max-width: 1024px) {
	.brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.about-grid { grid-template-columns: 1fr; gap: 32px; }
	.about-photo { max-width: 240px; }
	.brands-grid { grid-template-columns: 1fr; }
	.timeline-item { grid-template-columns: 64px 1fr; gap: 16px; }
	.timeline-item::before { left: 30px; }
	.timeline-marker { width: 60px; font-size: 11px; }
}

/* ── Breadcrumbs ── */
.breadcrumbs {
	margin-bottom: 14px;
	font-size: 13px;
	color: rgba(255,255,255,0.55);
}

.breadcrumbs a { color: rgba(255,255,255,0.70); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs .separator { margin: 0 6px; }

/* ── Page Hero ── */
.page-hero {
	background: linear-gradient(135deg, var(--navy) 0%, #0f2044 100%);
	padding: 64px 0 56px;
	text-align: center;
}

.page-hero h1 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 12px;
}

.page-hero p {
	font-size: 17px;
	color: rgba(255,255,255,0.68);
}

/* ── Single Post ── */
.entry-content {
	max-width: 740px;
	margin: 0 auto;
	padding: 56px 24px;
}

.entry-content h2 { font-size: 26px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.entry-content h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.entry-content p { font-size: 17px; color: #374151; line-height: 1.8; margin-bottom: 20px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { font-size: 17px; color: #374151; line-height: 1.8; margin-bottom: 6px; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 28px 0; }
.entry-content blockquote {
	border-left: 4px solid var(--cyan);
	margin: 28px 0;
	padding: 16px 24px;
	background: var(--light);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--gray);
}

/* ── Footer ── */
.site-footer {
	background: var(--navy);
	color: rgba(255,255,255,0.70);
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
}

.footer-brand .logo-text { color: var(--white); margin-bottom: 14px; }

.footer-brand p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.55);
	max-width: 280px;
}

.footer-col h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--white);
	margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
	font-size: 14px;
	color: rgba(255,255,255,0.60);
	text-decoration: none;
	transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.10);
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

/* ── Comments ── */
.comments-area {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--gray-light);
}

.comments-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 28px;
}

/* Comment list */
.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .children { padding-left: 44px; margin-top: 16px; }

.comment-item { margin-bottom: 20px; }

.comment-card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.comment-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
}

.comment-body {
	flex: 1;
	background: var(--light);
	border-radius: 12px;
	padding: 16px 20px;
}

.comment-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.comment-author-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
}

.comment-date {
	font-size: 12px;
	color: var(--gray);
}

.comment-awaiting {
	font-size: 11px;
	font-weight: 600;
	color: #b45309;
	background: #fef3c7;
	padding: 2px 8px;
	border-radius: 4px;
}

.comment-text p {
	font-size: 15px;
	color: #374151;
	line-height: 1.7;
	margin: 0;
}

.comment-actions { margin-top: 10px; }

.comment-reply-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	text-decoration: none;
	letter-spacing: 0.2px;
}
.comment-reply-link:hover { color: var(--cyan-dark); }

/* Comment form */
.comment-respond {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--gray-light);
}

.comment-reply-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 24px;
}

.comment-reply-title small { margin-left: 12px; font-size: 13px; font-weight: 400; }
.comment-reply-title small a { color: var(--gray); font-size: 13px; }

.comment-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.comment-form .form-group { margin-bottom: 16px; }

.comment-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}

.comment-form .required { color: var(--blue); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--gray-light);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 15px;
	color: var(--text);
	background: var(--white);
	transition: border-color 0.15s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(4,107,210,0.12);
}

.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form .form-submit { margin-top: 4px; }

.comment-form .form-submit input[type="submit"] {
	display: inline-flex;
	align-items: center;
	padding: 13px 28px;
	background: var(--blue);
	color: var(--white);
	border: none;
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}
.comment-form .form-submit input[type="submit"]:hover { background: var(--cyan-dark); }

.comments-closed {
	font-size: 14px;
	color: var(--gray);
	font-style: italic;
	margin-top: 24px;
}

@media (max-width: 768px) {
	.comment-form-row { grid-template-columns: 1fr; }
	.comment-list .children { padding-left: 20px; }
}

/* ── Pagination ── */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 56px;
}

.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 600;
	border: 1.5px solid var(--gray-light);
	color: var(--gray);
	text-decoration: none;
	transition: all 0.15s;
}

.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.site-nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--navy);
		flex-direction: column;
		align-items: stretch;
		padding: 16px 24px;
		gap: 4px;
		border-top: 1px solid rgba(255,255,255,0.1);
	}
	.site-nav.open { display: flex; }
	.site-nav a { padding: 12px 16px; border-radius: 6px; }
	.nav-toggle { display: flex; }

	.services-grid { grid-template-columns: 1fr; }
	.projects-grid { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.contact-form .form-row { grid-template-columns: 1fr; }
	.blog-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
