/* =========================================================
   Nail Haus — Main Stylesheet
   Palette matched to the reference (Milano) design:
   black #141414 / #0d0d0d · gold #caa343 · white #ffffff
   light section #f7f5f1 · text #1c1c1c
   Fonts: Cormorant Infant (display) · Jost (body)
   ========================================================= */

:root {
	--gold: #caa343;
	--gold-dark: #b08a2e;
	--gold-soft: #e7d4a3;
	--black: #141414;
	--black-2: #0d0d0d;
	--ink: #1c1c1c;
	--muted: #6f6a64;
	--line: #e6e2da;
	--light: #f7f5f1;
	--white: #ffffff;
	--shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
	--radius: 12px;
	--maxw: 1200px;
	--serif: "Cormorant Infant", Georgia, serif;
	--sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink);
	background: var(--white);
	line-height: 1.7;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
	font-family: var(--serif);
	color: var(--ink);
	font-weight: 600;
	line-height: 1.12;
	margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.6rem; }

p { margin: 0 0 1rem; }

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

.section { padding: 90px 0; }
.section--light { background: var(--light); }
.section--white { background: var(--white); }
.section--dark { background: var(--black); color: rgba(255,255,255,.82); }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: .32em;
	font-size: .76rem;
	font-weight: 600;
	color: var(--gold-dark);
	margin: 0 0 1rem;
	display: inline-block;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); }

.divider { width: 70px; height: 2px; background: var(--gold); margin: 18px auto 0; border: 0; position: relative; }
.divider::before, .divider::after { content: ""; position: absolute; top: 50%; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translateY(-50%); }
.divider::before { left: -14px; }
.divider::after { right: -14px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-family: var(--sans);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .78rem;
	padding: 15px 34px;
	border-radius: 2px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all .25s ease;
	white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #15110a; }
.btn--gold:hover { background: var(--gold-soft); color: #15110a; }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #000; color: var(--gold-soft); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(202,163,67,.8); }
.btn--ghost:hover { background: var(--gold); color: #15110a; border-color: var(--gold); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
	background: var(--black-2);
	color: rgba(255,255,255,.65);
	font-size: .8rem;
	letter-spacing: .04em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.65); }
.topbar a:hover { color: var(--gold); }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--black); box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 92px; }

.brand { display: flex; align-items: center; line-height: 1; }
.brand__link { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 58px; width: auto; }
/* Custom logo uploaded via Customizer — constrain its size in the header. */
.brand .custom-logo-link { display: block; line-height: 0; }
.brand img.custom-logo { height: 120px; width: auto; max-width: 230px; object-fit: contain; display: block; padding: 5px;}
.brand__text { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; }
.brand__text span { color: var(--gold); }

.main-nav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.main-nav a {
	font-weight: 500;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	padding: 6px 0;
	position: relative;
}
.main-nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .25s ease;
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--gold); }
.main-nav a:hover::after, .main-nav .current-menu-item > a::after { width: 100%; }
.main-nav .sub-menu { display: none; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	/* Fill the viewport below the top bar + header so the whole block fits on screen */
	min-height: calc(100vh - 134px);
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	padding: 40px 0;
	background: var(--hero-img) center/cover no-repeat;
}
/* Directional overlay (dark behind the text, fading to reveal the photo) + vignette */
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(9,7,6,.92) 0%, rgba(9,7,6,.66) 40%, rgba(9,7,6,.30) 68%, rgba(9,7,6,.48) 100%),
		radial-gradient(130% 100% at 50% 118%, rgba(0,0,0,.6), transparent 62%);
	pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 720px; }
.hero .eyebrow { color: var(--gold-soft); display: inline-flex; align-items: center; gap: 14px; }
.hero .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 4.4vw, 4rem); margin-bottom: .15em; text-shadow: 0 2px 28px rgba(0,0,0,.4); }
.hero h1 span { color: var(--gold-soft); display: block; font-style: italic; font-weight: 500; }
.hero__lead { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 540px; margin-bottom: 38px; line-height: 1.75; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll-down indicator */
.hero__scroll {
	position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 1;
	display: flex; flex-direction: column; align-items: center; gap: 9px;
	color: rgba(255,255,255,.72); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
	transition: color .2s ease;
}
.hero__scroll:hover { color: var(--gold); }
.hero__mouse { width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,.45); border-radius: 14px; position: relative; }
.hero__mouse::after {
	content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px;
	background: var(--gold); border-radius: 2px; transform: translateX(-50%);
	animation: heroScroll 1.7s ease-in-out infinite;
}
@keyframes heroScroll {
	0% { opacity: 0; transform: translate(-50%, 0); }
	35% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 13px); }
}

/* ---------- Stats band (Milano style: light bg, big numbers) ---------- */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding-top: 70px; padding-bottom: 70px; }
.stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat__num { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.stat__num span { color: var(--gold); }
.stat__label { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--muted); margin-top: 12px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-figure::after { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.about-list li { padding-left: 32px; position: relative; margin-bottom: 12px; color: var(--muted); }
.about-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-dark); }

/* Stats row nested inside the About section */
.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--line);
}

/* ---------- Featured services cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex; flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease;
	border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.16); }
.card__media { height: 260px; background: var(--light) var(--card-img) center/cover no-repeat; position: relative; }
.card__badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #15110a; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 6px 13px; border-radius: 2px; }
.card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card__tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-dark); }
.card h3 { margin: 8px 0 8px; }
.card__desc { color: var(--muted); font-size: .92rem; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.card__price { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold-dark); }
.card__steps { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Price menu (services page) ---------- */
.menu-group { margin-bottom: 60px; }
.menu-group__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.menu-group__head h2 { margin: 0; }
.menu-group__head .line { flex: 1; height: 1px; background: var(--gold); opacity: .5; }
.menu-group__note { font-size: .84rem; color: var(--gold-dark); font-style: italic; }
.price-list { display: grid; gap: 18px; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
.price-row__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.price-row__tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dark); margin-left: 10px; }
.price-row__steps { font-size: .72rem; color: var(--muted); }
.price-row__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.price-row__desc { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; margin: 4px 0 0; }

/* ---------- Features / why us ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature { text-align: center; padding: 40px 28px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.feature__icon { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; background: var(--black); display: grid; place-items: center; font-size: 1.7rem; color: var(--gold); }
.feature h3 { font-size: 1.3rem; }
.feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.testi__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.testi__text { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--ink); }
.testi__photo { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-top: 20px; border: 1px solid var(--line); }
.testi__author { margin-top: 20px; font-weight: 600; color: var(--ink); }
.testi__author span { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* Testimonials slider (auto-enables when reviews overflow the row) */
.testi-slider { position: relative; }
.testi-track {
	display: flex; gap: 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 4px 2px;
	-webkit-overflow-scrolling: touch;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-slide { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.testi-slide .testi { height: 100%; box-sizing: border-box; }
/* Controls row (arrows + dots) sit below the cards, never overlapping them */
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; }
.testi-controls[hidden] { display: none; }
.testi-nav {
	width: 44px; height: 44px; border-radius: 50%; flex: none;
	border: 1px solid rgba(202, 163, 67, .5); background: transparent;
	color: var(--gold); font-size: 1.6rem; line-height: 1; cursor: pointer;
	display: grid; place-items: center; transition: all .2s ease;
}
.testi-nav:hover { background: var(--gold); color: #15110a; border-color: var(--gold); }
.testi-dots { display: flex; justify-content: center; gap: 9px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .25); border: 0; padding: 0; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.testi-dot.is-active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 980px) { .testi-slide { flex-basis: calc((100% - 28px) / 2); } }
@media (max-width: 720px) { .testi-slide { flex-basis: 100%; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* WordPress Gallery block (editable on the Gallery page) — match the theme */
.gallery-content .wp-block-gallery { gap: 18px; }
.gallery-content .wp-block-image,
.gallery-content figure.wp-block-image { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-content .wp-block-image img,
.gallery-content .wp-block-gallery img { border-radius: var(--radius); transition: transform .4s ease; }
.gallery-content .wp-block-image:hover img { transform: scale(1.05); }
.gallery-content figcaption { color: var(--muted); font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(rgba(8,8,8,.78), rgba(8,8,8,.82)), var(--cta-img) center/cover; color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(rgba(8,8,8,.62), rgba(8,8,8,.72)), var(--hero-img) center/cover; color: #fff; text-align: center; padding: 120px 0 96px; }
.page-hero h1 { color: #fff; }
.page-hero__subtitle { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.9); }
.breadcrumb { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.breadcrumb a { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-intro { color: var(--muted); max-width: 460px; margin: 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ic { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--black); display: grid; place-items: center; color: var(--gold); }
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item h4 { margin: 0 0 3px; font-family: var(--sans); font-weight: 600; color: var(--ink); }
.contact-item p { margin: 0; color: var(--muted); line-height: 1.6; }
.contact-social { display: flex; gap: 10px; margin-top: 10px; }
.contact-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); display: grid; place-items: center; font-size: .85rem; font-weight: 600; color: var(--ink); transition: all .2s ease; }
.contact-social a:hover { background: var(--black); color: var(--gold); border-color: var(--black); transform: translateY(-2px); }
.contact-map { line-height: 0; }
.contact-map iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(.25) contrast(1.03); }
.contact-form { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-form h3 { margin-bottom: 18px; }
.contact-form label { display: block; font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; color: var(--ink); }
.contact-form input, .contact-form textarea {
	width: 100%; padding: 11px 14px; margin-bottom: 12px; border: 1px solid var(--line);
	border-radius: 4px; font-family: var(--sans); font-size: .92rem; background: var(--light);
}
.contact-form textarea { min-height: 92px; height: 92px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* Contact Form 7 integration */
.contact-form .wpcf7-form-control-wrap { display: block; }
.contact-form .wpcf7 p { margin: 0; }
.contact-form input.btn,
.contact-form input.wpcf7-submit {
	width: auto; margin: 4px 0 0; padding: 15px 34px; cursor: pointer;
	background: var(--gold); color: #15110a; border: 1.5px solid transparent;
	font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; border-radius: 2px;
}
.contact-form input.btn:hover,
.contact-form input.wpcf7-submit:hover { background: var(--gold-soft); }
.contact-form .wpcf7-not-valid-tip { color: #b3261e; font-size: .78rem; margin: -12px 0 14px; display: block; }
.contact-form input.wpcf7-not-valid, .contact-form textarea.wpcf7-not-valid { border-color: #b3261e; }
.contact-form .wpcf7-response-output { margin: 18px 0 0 !important; padding: 12px 16px; border-radius: 6px; font-size: .9rem; }
.contact-form .wpcf7-spinner { margin: 0 0 0 10px; }

/* ---------- Page content (default page.php) ---------- */
.page-content { max-width: 820px; margin: 0 auto; }
.page-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); color: rgba(255,255,255,.62); padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 54px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .86rem; margin-bottom: 22px; }
.site-footer a { color: rgba(255,255,255,.62); }
.site-footer a:hover { color: var(--gold); }
.footer-brand .brand__text { color: #fff; }
.footer-brand .brand__text span { color: var(--gold); }
.footer-brand p { font-size: .92rem; margin-top: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; line-height: 1.5; }
.footer-contact .fc-ic { flex: none; color: var(--gold); margin-top: 2px; }
.footer-contact .fc-ic svg { width: 17px; height: 17px; display: block; }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.1); padding: 6px 0; font-size: .9rem; list-style: none; }
.footer-hours { padding: 0; margin: 0; }
.social { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.8); }
.social a:hover { background: var(--gold); color: #15110a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; text-align: center; font-size: .84rem; color: rgba(255,255,255,.45); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
	.cards, .features, .testi-grid { grid-template-columns: repeat(2, 1fr); }
	.stats .container, .about-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
	.stat:nth-child(3)::before { display: none; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.section { padding: 64px 0; }

	/* Top bar — centered & compact */
	.topbar { font-size: .74rem; }
	.topbar .container { justify-content: center; gap: 10px 18px; min-height: 38px; text-align: center; }
	.topbar__left { display: none; }
	.topbar__right { gap: 18px; justify-content: center; }
	.topbar__right span { display: none; } /* show only phone on mobile */

	/* Header — hamburger on the left, logo centered */
	.header-inner { position: relative; justify-content: center; min-height: 96px; }
	.brand { margin: 0; }
	.brand__logo { height: 80px; }
	.brand img.custom-logo { height: 80px; }
	.brand__text { font-size: 1.6rem; }
	.header-cta { position: static; }
	.header-cta .btn { display: none; }
	.nav-toggle { display: block; position: absolute; left: 8px; top: 50%; transform: translateY(-50%); z-index: 200; padding: 8px 6px; }

	/* Off-canvas menu — slides in from the left to match the toggle */
	.main-nav { position: fixed; inset: 0 auto 0 0; width: min(310px, 82vw); background: var(--black); flex-direction: column; padding: 148px 32px 40px; transform: translateX(-100%); transition: transform .3s ease; box-shadow: 12px 0 40px rgba(0,0,0,.45); overflow-y: auto; }
	.main-nav.is-open { transform: translateX(0); }
	.main-nav ul { flex-direction: column; gap: 18px; }

	.cards, .features, .testi-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
	.stat::before { display: none !important; }

	/* Hero — uniform darker overlay for readability on narrow screens */
	.hero { min-height: 84vh; }
	.hero::before { background: linear-gradient(rgba(9,7,6,.5), rgba(9,7,6,.82)); }
	.hero__lead { font-size: 1.08rem; }
	.hero__scroll { display: none; }
}

/* =========================================================
   Promo popup — image lightbox (Milano-style)
   ========================================================= */
.promo-overlay {
	position: fixed; inset: 0; z-index: 1000;
	display: flex; align-items: center; justify-content: center;
	padding: 28px;
	background: rgba(6, 6, 6, .85);
	opacity: 0; visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}
.promo-overlay.is-open { opacity: 1; visibility: visible; }
.promo-overlay[hidden] { display: none; }

.promo-modal {
	position: relative;
	max-width: 560px;
	max-height: 92vh;
	transform: translateY(18px) scale(.97);
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.promo-overlay.is-open .promo-modal { transform: translateY(0) scale(1); }

.promo-link { display: block; }
.promo-link img {
	display: block;
	width: 100%;
	max-height: 92vh;
	width: auto;
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
	border: 1px solid rgba(202, 163, 67, .45);
}

.promo-close {
	position: absolute; top: -16px; right: -16px;
	width: 38px; height: 38px;
	display: grid; place-items: center;
	background: var(--gold); color: #15110a;
	border: 0; border-radius: 50%; cursor: pointer;
	font-size: 1.5rem; line-height: 1;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .5);
	transition: background .2s ease, transform .2s ease;
}
.promo-close:hover { background: #fff; transform: rotate(90deg); }

@media (max-width: 480px) {
	.promo-overlay { padding: 18px; }
	.promo-close { top: -10px; right: -6px; }
}
