/* =========================================================================
   MAGIC HAPPENS — main.css
   Paleta si tipografia sunt preluate din identitatea vizuala a brandului
   (carusel de reclame): bleumarin / auriu / ivoire, Playfair Display + Poppins.
   Toate valorile sunt variabile CSS -> usor de ajustat din Personalizare (Customizer)
   sau direct de aici.
   ========================================================================= */

:root {
	/* Culori brand */
	--mh-navy: #0A1628;
	--mh-navy-soft: #142238;
	--mh-navy-2: #002563;
	--mh-gold: #C9956A;
	--mh-gold-light: #E8CC80;
	--mh-gold-pale: #F1E2C3;
	--mh-cream: #F7F3EA;
	--mh-cream-soft: #FBF8F2;
	--mh-white: #FFFFFF;

	/* Text */
	--mh-text: #4B4F58;
	--mh-text-light: #7A7F89;
	--mh-text-on-navy: #E8E6DF;

	/* Utilitare */
	--mh-border: rgba(10, 22, 40, 0.09);
	--mh-shadow-sm: 0 2px 10px rgba(10, 22, 40, 0.06);
	--mh-shadow-md: 0 10px 30px rgba(10, 22, 40, 0.10);
	--mh-shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.16);
	--mh-radius: 20px;
	--mh-radius-sm: 12px;
	--mh-radius-pill: 999px;

	/* Tipografie */
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--mh-container-w: 1200px;
	--mh-container-w-narrow: 800px;
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--mh-text);
	background: var(--mh-cream);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--mh-navy); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
.screen-reader-text {
	position: absolute; left: -9999px;
}
.mh-skip-link:focus {
	position: fixed; top: 10px; left: 10px; background: var(--mh-navy); color: #fff;
	padding: 10px 16px; z-index: 9999; border-radius: 6px;
}

.mh-container {
	max-width: var(--mh-container-w);
	margin: 0 auto;
	padding: 0 24px;
}
.mh-container-narrow { max-width: var(--mh-container-w-narrow); }
.mh-text-center { text-align: center; }

/* Tipografie utilitara */
.mh-eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--mh-gold);
	margin: 0 0 .8em;
	display: flex;
	align-items: center;
	gap: 10px;
}
.mh-eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--mh-gold);
}
.mh-eyebrow-light { color: var(--mh-gold-light); }

.mh-h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
.mh-h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; }
.mh-h2 em, .mh-h3 em, h1 em, h3 em { font-style: italic; color: var(--mh-gold); font-weight: 600; }
.mh-h2-light { color: var(--mh-white); }
.mh-h3 { font-size: 1.5rem; }
.mh-h4 { font-size: 1.2rem; margin-bottom: .4em; }

.mh-section-sub {
	font-size: 1.05rem;
	color: var(--mh-text-light);
	max-width: 640px;
}
.mh-section-head-center { text-align: center; margin: 0 auto 3rem; max-width: 720px; }
.mh-section-head-center .mh-eyebrow { justify-content: center; }
.mh-section-head-split {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
	margin-bottom: 2.5rem; flex-wrap: wrap;
}

.mh-tagline-badge {
	display: inline-block;
	background: var(--mh-gold-pale);
	color: var(--mh-navy);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 20px;
	border-radius: var(--mh-radius-pill);
	margin-top: 1rem;
}
.mh-tagline-badge-light { background: rgba(255,255,255,0.12); color: var(--mh-gold-light); }

.mh-section { padding: 5.5rem 0; }
.mh-rounded-image, .mh-cover-image {
	width: 100%; height: 100%; object-fit: cover; border-radius: var(--mh-radius);
	box-shadow: var(--mh-shadow-md);
}
.mh-empty-notice {
	text-align: center; padding: 2rem; background: var(--mh-cream-soft); border-radius: var(--mh-radius-sm);
	color: var(--mh-text-light); font-style: italic;
}

/* =========================================================================
   BOTOANE
   ========================================================================= */
.mh-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-body); font-weight: 600; font-size: 15px;
	padding: 13px 26px; border-radius: var(--mh-radius-pill);
	border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	white-space: nowrap;
}
.mh-btn:hover { transform: translateY(-2px); }
.mh-btn-gold { background: linear-gradient(135deg, var(--mh-gold-light), var(--mh-gold)); color: var(--mh-navy); box-shadow: var(--mh-shadow-sm); }
.mh-btn-gold:hover { box-shadow: var(--mh-shadow-md); }
.mh-btn-navy { background: var(--mh-navy); color: var(--mh-white); }
.mh-btn-navy:hover { background: var(--mh-navy-soft); }
.mh-btn-outline { border-color: var(--mh-navy); color: var(--mh-navy); background: transparent; }
.mh-btn-outline:hover { background: var(--mh-navy); color: var(--mh-white); }
.mh-btn-whatsapp { background: #25D366; color: #fff; }
.mh-btn-whatsapp:hover { background: #1ebc59; }
.mh-btn-lg { padding: 16px 34px; font-size: 16px; }

.mh-link-arrow {
	display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--mh-navy);
	border-bottom: 2px solid var(--mh-gold); padding-bottom: 3px; transition: gap .18s ease;
}
.mh-link-arrow:hover { gap: 14px; }
.mh-link-arrow-light { color: var(--mh-white); border-bottom-color: var(--mh-gold-light); }

/* =========================================================================
   HEADER
   ========================================================================= */
.mh-site-header {
	position: sticky; top: 0; z-index: 500;
	background: var(--mh-navy);
	transition: box-shadow .2s ease;
}
.mh-site-header.is-scrolled { box-shadow: var(--mh-shadow-md); }
.mh-header-inner {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding-top: 14px; padding-bottom: 14px;
}
.mh-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mh-logo img, .mh-logo-mark { height: 44px; width: auto; border-radius: 8px; }
.mh-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--mh-white); }
.mh-footer-logo img { height: 42px; }

.mh-nav-menu { display: flex; align-items: center; gap: 30px; }
.mh-nav-menu a { font-weight: 500; font-size: 15px; color: rgba(255,255,255,.85); position: relative; }
.mh-nav-menu a::after {
	content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
	background: var(--mh-gold-light); transition: width .2s ease;
}
.mh-nav-menu a:hover { color: var(--mh-white); }
.mh-nav-menu a:hover::after { width: 100%; }

.mh-header-actions { display: flex; align-items: center; gap: 10px; }
.mh-header-actions .mh-btn { padding: 11px 22px; font-size: 14px; }

.mh-nav-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 42px; height: 42px; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
}
.mh-nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--mh-white); transition: transform .2s ease, opacity .2s ease; }
.mh-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mh-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.mh-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.mh-hero { position: relative; overflow: hidden; padding: 7rem 0 0; color: var(--mh-white); }
.mh-hero-bg { position: absolute; inset: 0; z-index: 0; }
.mh-hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.mh-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,22,40,.82) 0%, rgba(10,22,40,.72) 45%, rgba(10,22,40,.92) 100%);
}
.mh-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 780px; padding-top: 2rem; padding-bottom: 4rem; }
.mh-hero-badge { justify-content: center; color: var(--mh-gold-light); }
.mh-hero-badge::before { display: none; }
.mh-hero-title { color: var(--mh-white); font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: .6em; }
.mh-hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 620px; margin: 0 auto 2.2em; }
.mh-hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.mh-hero-marquee-wrap { position: relative; z-index: 1; margin-top: 4rem; padding: 1.6rem 0 2rem; background: rgba(10,22,40,0.55); border-top: 1px solid rgba(255,255,255,.12); }
.mh-hero-strapline { text-align: center; color: var(--mh-gold-light); font-weight: 600; letter-spacing: .05em; margin-bottom: 1rem; }
.mh-marquee { overflow: hidden; }
.mh-marquee-track { display: flex; gap: 14px; width: max-content; animation: mh-marquee 28s linear infinite; }
.mh-marquee-item {
	white-space: nowrap; padding: 10px 22px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--mh-radius-pill);
	color: var(--mh-white); font-size: 14px; font-weight: 500;
}
@keyframes mh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.mh-trustbar { background: var(--mh-navy); }
.mh-trustbar-inner {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem;
	padding: 2.4rem 24px; text-align: center;
}
.mh-stat { display: flex; flex-direction: column; gap: 4px; }
.mh-stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--mh-gold-light); }
.mh-stat-label { font-size: 13px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; }
.mh-stat-rating .mh-stars { color: var(--mh-gold-light); font-size: 1.4rem; letter-spacing: 2px; }

/* =========================================================================
   STORY / FAIRYTALE (text-only, fara imagine)
   ========================================================================= */
.mh-story { background: var(--mh-cream-soft); }
.mh-story-wrap { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.mh-story-wrap .mh-eyebrow { justify-content: center; }
.mh-story-title { font-size: 1.9rem; margin-bottom: .8em; }
.mh-story-lines { margin: 1.4em 0; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.mh-story-lines li { padding-left: 20px; border-left: 2px solid var(--mh-gold); font-style: italic; color: var(--mh-navy); text-align: left; }
.mh-story-content p { max-width: 620px; margin-left: auto; margin-right: auto; }
.mh-story-quote {
	margin: 1.6em auto 0; padding: 1.4em 1.6em; background: var(--mh-navy); color: var(--mh-gold-light);
	border-radius: var(--mh-radius-sm); font-family: var(--font-heading); font-size: 1.15rem; font-style: italic;
	max-width: 620px;
}

/* =========================================================================
   SERVICES — tab interactiv (lista numerotata stanga / panou dreapta)
   ========================================================================= */
.mh-services .mh-section-head { text-align: left; margin: 0 0 3rem; max-width: 760px; }
.mh-services .mh-eyebrow { justify-content: flex-start; }

.mh-services-tabs { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: start; }

.mh-services-list { display: flex; flex-direction: column; }
.mh-services-list-item {
	display: flex; align-items: center; gap: 18px; width: 100%;
	background: transparent; border: none; border-bottom: 1px solid var(--mh-border);
	padding: 1.5rem 0; text-align: left; cursor: pointer;
}
.mh-services-list-number {
	font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--mh-gold);
	flex-shrink: 0; width: 26px;
}
.mh-services-list-title {
	font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--mh-text-light);
	flex: 1; transition: color .2s ease;
}
.mh-services-list-arrow {
	color: var(--mh-navy); font-size: 1.1rem; opacity: 0; transform: translateX(-6px);
	transition: opacity .2s ease, transform .2s ease; flex-shrink: 0;
}
.mh-services-list-item:hover .mh-services-list-title { color: var(--mh-gold); }
.mh-services-list-item.is-active .mh-services-list-title { color: var(--mh-navy); }
.mh-services-list-item.is-active .mh-services-list-arrow { opacity: 1; transform: translateX(0); }

.mh-services-panels { position: relative; }
.mh-services-panel { display: none; }
.mh-services-panel.is-active { display: block; animation: mh-fade-in .35s ease; }
@keyframes mh-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.mh-services-panel-image { margin-bottom: 1.8rem; }
.mh-services-panel-image img { aspect-ratio: 16/11; }
.mh-services-panel-body .mh-h3 { margin-bottom: .5em; }
.mh-service-bullets { display: flex; flex-direction: column; margin: 1.4em 0; }
.mh-service-bullets li {
	display: flex; align-items: flex-start; gap: 12px; padding: 14px 0;
	border-top: 1px solid var(--mh-border); color: var(--mh-text);
}
.mh-bullet-arrow { color: var(--mh-gold); font-weight: 700; flex-shrink: 0; }

/* =========================================================================
   GRID GENERIC (activitati / testimoniale)
   ========================================================================= */
.mh-grid { display: grid; gap: 28px; }
.mh-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Icon grid (Experiente interactive) */
.mh-icon-card {
	background: var(--mh-white); border-radius: var(--mh-radius); padding: 2.2rem 1.9rem;
	box-shadow: var(--mh-shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.mh-icon-card:hover { transform: translateY(-6px); box-shadow: var(--mh-shadow-md); }
.mh-icon-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 58px; height: 58px; font-size: 28px; border-radius: 50%;
	background: var(--mh-gold-pale); margin-bottom: 1.1rem;
}
.mh-icon-card p { color: var(--mh-text-light); font-size: .96rem; margin-bottom: 0; }

/* Photo cards (Activitatile noastre) */
.mh-photo-card {
	background: var(--mh-white); border-radius: var(--mh-radius); overflow: hidden;
	box-shadow: var(--mh-shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.mh-photo-card:hover { transform: translateY(-6px); box-shadow: var(--mh-shadow-md); }
.mh-photo-card-image { position: relative; aspect-ratio: 5/4; background: var(--mh-gold-pale); }
.mh-photo-card-image img { width: 100%; height: 100%; object-fit: cover; }
.mh-photo-card-placeholder {
	width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
	font-size: 3rem; background: linear-gradient(135deg, var(--mh-gold-pale), var(--mh-gold-light));
}
.mh-tag-pill {
	position: absolute; top: 14px; left: 14px; background: var(--mh-navy); color: var(--mh-gold-light);
	font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--mh-radius-pill);
}
.mh-photo-card-body { padding: 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.mh-photo-card-meta { font-size: 13px; color: var(--mh-gold); font-weight: 600; margin-bottom: .6em; }
.mh-photo-card-body p:last-of-type { margin-bottom: 0; }
.mh-photo-card-cta {
	background: var(--mh-navy); color: var(--mh-white); justify-content: center; align-items: flex-start;
}
.mh-photo-card-cta .mh-photo-card-body { justify-content: center; }
.mh-photo-card-cta h3 { color: var(--mh-white); }
.mh-photo-card-cta p { color: rgba(255,255,255,.75); }

/* Carduri cu imagine deja "gata desenata" (titlu/eticheta incluse in poza) */
.mh-photo-card-designed .mh-photo-card-image { aspect-ratio: 4/5; background: transparent; }
.mh-photo-card-designed .mh-photo-card-footer {
	padding: 14px 18px; text-align: center; border-top: 1px solid var(--mh-border);
}
.mh-photo-card-designed .mh-photo-card-footer .mh-photo-card-meta { margin: 0; }

/* =========================================================================
   OBJECTIONS
   ========================================================================= */
.mh-objections { background: var(--mh-navy); color: var(--mh-text-on-navy); }
.mh-objections .mh-h2 { color: var(--mh-white); margin-bottom: 2.5rem; }
.mh-objection-bubbles { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.mh-bubble {
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--mh-radius); padding: 1.3rem 1.6rem; max-width: 320px;
	font-style: italic; color: rgba(255,255,255,.88); font-size: .98rem;
}
.mh-bubble-2 { margin-top: 1.4rem; }
.mh-bubble-3 { margin-top: -1rem; }
.mh-objections-footer {
	text-align: center; margin-top: 3rem; font-family: var(--font-heading); font-size: 1.4rem; font-style: italic;
	color: var(--mh-gold-light);
}

/* =========================================================================
   HOW WE WORK
   ========================================================================= */
.mh-howwework-quote { margin: 0 auto; text-align: center; font-style: italic; }
.mh-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 2rem; }
.mh-step { text-align: center; padding: 1.6rem 1rem; position: relative; }
.mh-step-number {
	display: flex; align-items: center; justify-content: center; margin: 0 auto .9rem;
	width: 52px; height: 52px; border-radius: 50%; background: var(--mh-navy); color: var(--mh-gold-light);
	font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
}
.mh-step p { font-size: .92rem; color: var(--mh-text-light); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.mh-testimonial-card {
	background: var(--mh-white); border-radius: var(--mh-radius); padding: 2rem;
	box-shadow: var(--mh-shadow-sm); display: flex; flex-direction: column;
}
.mh-testimonial-card .mh-stars { color: var(--mh-gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .8rem; }
.mh-testimonial-quote { font-style: italic; color: var(--mh-navy); flex: 1; }
.mh-testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1rem; }
.mh-avatar-initial {
	width: 44px; height: 44px; border-radius: 50%; background: var(--mh-navy); color: var(--mh-gold-light);
	display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700;
	flex-shrink: 0;
}
.mh-testimonial-author div { display: flex; flex-direction: column; font-size: .85rem; }
.mh-testimonial-author strong { color: var(--mh-navy); font-size: .95rem; }
.mh-testimonial-author span { color: var(--mh-text-light); }

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.mh-accordion-item {
	border-bottom: 1px solid var(--mh-border);
}
.mh-accordion-trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: transparent; border: none; padding: 1.4rem 0; text-align: left;
	font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--mh-navy);
}
.mh-accordion-icon {
	flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--mh-gold);
	display: flex; align-items: center; justify-content: center; color: var(--mh-gold); font-size: 18px;
	transition: transform .25s ease;
}
.mh-accordion-item.is-open .mh-accordion-icon { transform: rotate(45deg); }
.mh-accordion-panel {
	max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.mh-accordion-item.is-open .mh-accordion-panel { max-height: 600px; }
.mh-accordion-panel p { padding-bottom: 1.4rem; color: var(--mh-text-light); margin: 0; }

/* =========================================================================
   PORTFOLIO
   ========================================================================= */
.mh-portfolio-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.mh-portfolio-item { position: relative; margin: 0; border-radius: var(--mh-radius-sm); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--mh-shadow-sm); }
.mh-portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.mh-portfolio-item:hover img { transform: scale(1.06); }
.mh-portfolio-item figcaption {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
	background: linear-gradient(180deg, transparent, rgba(10,22,40,.85));
	color: var(--mh-white); font-size: .85rem; font-weight: 500;
	opacity: 0; transition: opacity .25s ease;
}
.mh-portfolio-item:hover figcaption { opacity: 1; }

/* =========================================================================
   CTA FINAL
   ========================================================================= */
.mh-cta-final {
	background: linear-gradient(135deg, var(--mh-navy) 0%, var(--mh-navy-soft) 100%);
	color: var(--mh-white); text-align: center;
}
.mh-cta-final-inner { max-width: 700px; }
.mh-cta-final-sub { color: rgba(255,255,255,.78); font-size: 1.1rem; }
.mh-cta-final-actions { margin: 2rem 0 1.5rem; }
.mh-cta-final-contact { display: flex; gap: 10px; justify-content: center; color: rgba(255,255,255,.65); font-size: .95rem; }
.mh-cta-final-contact a:hover { color: var(--mh-gold-light); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.mh-site-footer { background: var(--mh-navy); color: rgba(255,255,255,.72); padding-top: 4.5rem; }
.mh-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.mh-footer-brand .mh-logo { margin-bottom: 1.2rem; }
.mh-footer-brand .mh-logo span { font-family: var(--font-heading); font-weight: 700; color: var(--mh-white); font-size: 1.15rem; }
.mh-footer-brand p { font-size: .92rem; max-width: 320px; }
.mh-footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.mh-footer-social a {
	width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
	display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.mh-footer-social a:hover { background: var(--mh-gold); color: var(--mh-navy); border-color: var(--mh-gold); }
.mh-footer-col h4 { color: var(--mh-white); font-size: 1rem; margin-bottom: 1.1rem; }
.mh-footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.mh-footer-col a:hover { color: var(--mh-gold-light); }
.mh-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12); padding: 1.6rem 24px; display: flex;
	justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem;
}
.mh-footer-legal-menu { display: flex; gap: 20px; }
.mh-footer-legal-menu a:hover { color: var(--mh-gold-light); }
.mh-footer-widget-title { color: var(--mh-white); }

/* =========================================================================
   PAGINI GENERICE (page.php / index.php / single.php / 404.php)
   ========================================================================= */
.mh-page-content { padding-top: 3.5rem; }
.mh-page-header { margin-bottom: 2rem; text-align: center; }
.mh-page-thumbnail { margin-bottom: 2.5rem; }
.mh-page-thumbnail img { aspect-ratio: 16/9; }
.mh-prose h2 { margin-top: 1.6em; }
.mh-prose p { color: var(--mh-text); }
.mh-post-meta { color: var(--mh-text-light); font-size: .9rem; }
.mh-post-divider { border: none; border-top: 1px solid var(--mh-border); margin: 3rem 0; }
.mh-404 { padding: 8rem 0; }
.mh-404 .mh-btn { margin-top: 1.5rem; }
.mh-freeform-content { padding-top: 0; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
	.mh-services-tabs { grid-template-columns: 1fr; gap: 2rem; }
	.mh-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.mh-steps { grid-template-columns: repeat(3, 1fr); }
	.mh-footer-grid { grid-template-columns: 1fr 1fr; }
	.mh-portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.mh-nav { position: fixed; top: 74px; left: 0; right: 0; background: var(--mh-cream-soft);
		max-height: 0; overflow: hidden; transition: max-height .3s ease; border-bottom: 1px solid var(--mh-border); }
	.mh-nav.is-open { max-height: 70vh; overflow-y: auto; }
	.mh-nav-menu { flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 24px 20px; }
	.mh-nav-menu li { width: 100%; border-bottom: 1px solid var(--mh-border); }
	.mh-nav-menu a { display: block; padding: 14px 0; color: var(--mh-navy); }
	.mh-nav-menu a:hover { color: var(--mh-gold); }
	.mh-nav-toggle { display: flex; }
}

@media (max-width: 720px) {
	.mh-section { padding: 3.5rem 0; }
	.mh-steps { grid-template-columns: repeat(2, 1fr); }
	.mh-grid-3 { grid-template-columns: 1fr; }
	.mh-footer-grid { grid-template-columns: 1fr; }
	.mh-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.mh-section-head-split { flex-direction: column; align-items: flex-start; }
	.mh-hero-actions { flex-direction: column; width: 100%; }
	.mh-hero-actions .mh-btn { width: 100%; }
	.mh-footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}
