/* ==========================================================================
   A2Z Barber Shop — static rebuild
   Design tokens taken from the live Elementor kit (post-111.css)
   ========================================================================== */

:root {
	--color-primary: #000000;
	--color-secondary: #F9F9F9;
	--color-text: #000000;
	--color-accent: #FFC64C;
	--color-white: #FFFFFF;
	--color-gray: #D5D5D5;

	--font-family: "Montserrat", sans-serif;

	--container-max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 15px;
	line-height: 1.5em;
	color: var(--color-text);
	background: var(--color-white);
}

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

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

h1, h2, h3, h4 {
	font-family: var(--font-family);
	margin: 0 0 15px;
}

.eyebrow {
	font-size: 25px;
	font-weight: 300;
	text-transform: capitalize;
	margin: 0 0 5px;
}

h1, .hero__title {
	font-size: 45px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.1em;
}

section > h2,
.services__heading h2,
.testimonials__heading h2 {
	font-size: 36px;
	font-weight: 500;
	text-transform: uppercase;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 15px 32px;
	border-radius: 2px;
	border: 1px solid var(--color-primary);
	background: transparent;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); }

.btn--outline {
	color: var(--color-primary);
	background: transparent;
}
.btn--outline:hover {
	background: var(--color-primary);
	color: var(--color-accent);
}

.btn--accent {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-primary);
	width: 100%;
	justify-content: center;
	padding: 17px 28px;
	font-weight: 600;
	box-shadow: 0 10px 24px rgba(255,198,76,0.35);
}
.btn--accent:hover { background: #ffd06b; border-color: #ffd06b; box-shadow: 0 14px 30px rgba(255,198,76,0.45); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	background: var(--color-white);
	position: sticky;
	top: 0;
	z-index: 20;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.site-header__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-header__logo img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	transition: transform .2s ease;
}
.site-header__logo:hover img { transform: scale(1.05); }

.site-header__title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
	flex: 1;
	text-align: center;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	display: flex;
	align-items: stretch;
	min-height: 88vh;
	position: relative;
}

.hero__scroll {
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.hero__scroll-link {
	display: inline-flex;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--color-primary);
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	transition: transform .3s ease, background-color .3s ease;
	animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll-link:hover { background: var(--color-primary); }
.hero__scroll-link:hover svg { fill: var(--color-white); }
.hero__scroll-link svg { width: 14px; height: auto; fill: var(--color-primary); transition: fill .3s ease; }

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

.hero__content {
	flex: 1 1 55%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px 6vw 60px;
	text-align: left;
	max-width: 720px;
}

.hero__lead {
	font-size: 16px;
	color: #444;
	max-width: 480px;
	margin: 0 0 32px;
}

.btn--large {
	width: auto;
	padding: 18px 40px;
	font-size: 14px;
}

.hero__note {
	margin: 20px 0 0;
	font-size: 13px;
	color: #666;
}
.hero__note a { font-weight: 600; color: var(--color-primary); border-bottom: 1px solid var(--color-accent); }
.hero__note a:hover { color: var(--color-accent); }

.hero__image {
	flex: 1 1 45%;
	background-size: cover;
	background-position: center;
	position: relative;
}
.hero__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}

/* ==========================================================================
   Location
   ========================================================================== */

.location {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	background: var(--color-secondary);
}

.location__text {
	flex: 1 1 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 6vw;
}

.location__address { font-size: 30px; font-weight: 500; text-transform: uppercase; }

.location__text p { margin: 0 0 28px; color: #444; }

.location__panel {
	flex: 1 1 400px;
	min-height: 340px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.location__panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
	background: var(--color-secondary);
	padding: 90px 24px;
}

.services > * {
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
}

.services__heading { text-align: center; }

.services__heading { margin-bottom: 50px; }
.services__heading .eyebrow { color: #999; }

.services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: left;
}

.service-card {
	background: var(--color-white);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	transition: transform .3s ease, box-shadow .3s ease;
	padding-bottom: 24px;
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

.service-card img {
	width: 100%;
	aspect-ratio: 426 / 550;
	object-fit: cover;
	margin-bottom: 20px;
	transition: transform .4s ease;
}
.service-card:hover img { transform: scale(1.04); }

.service-card h4,
.service-card p,
.service-card__price { padding-left: 20px; padding-right: 20px; }

.service-card h4 {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-card p { font-size: 14px; color: #555; }

.service-card__price {
	font-size: 24px;
	font-weight: 600;
	margin-top: 10px;
	color: var(--color-primary);
}
.service-card__price::before {
	content: "";
	display: block;
	width: 32px;
	height: 3px;
	background: var(--color-accent);
	margin-bottom: 12px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 100px 24px;
	text-align: center;
}

.testimonials__heading h2 { color: var(--color-accent); }
.testimonials__heading .eyebrow { color: rgba(255,255,255,0.7); }

.testimonial-carousel {
	max-width: 720px;
	margin: 30px auto 0;
	position: relative;
	min-height: 160px;
}

.testimonial-carousel__track { position: relative; }

.testimonial-carousel__slide {
	margin: 0;
	display: none;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6em;
}
.testimonial-carousel__slide.is-active { display: block; animation: fade-in .5s ease; }

.testimonial-carousel__slide::before {
	content: "\201C";
	display: block;
	font-family: Georgia, serif;
	font-size: 60px;
	line-height: 1;
	color: var(--color-accent);
	margin-bottom: 10px;
}

.testimonial-carousel__slide p { margin: 0 0 20px; }
.testimonial-carousel__slide cite {
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: var(--color-accent);
}

@keyframes fade-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.testimonial-carousel__bullets {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.testimonial-carousel__bullets button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.35);
	cursor: pointer;
	padding: 0;
}
.testimonial-carousel__bullets button.is-active { background: var(--color-accent); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 70px 24px 0;
}

.site-footer__top {
	max-width: var(--container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer__brand img { width: 70px; height: 70px; margin-bottom: 16px; }
.site-footer__brand p { color: rgba(255,255,255,0.75); }

.social-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; gap: 24px; }
.social-list a {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: color .2s ease;
}
.social-list a:hover { color: var(--color-accent); }

.site-footer__hours h4,
.site-footer__contact h4 {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--color-accent);
}

.hours-row { margin-bottom: 18px; }
.hours-row h2,
.site-footer__contact h2 {
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	margin: 0 0 4px;
	color: rgba(255,255,255,0.9);
}
.site-footer__contact a:hover { color: var(--color-accent); }

.site-footer__bottom {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 24px 0;
	text-align: center;
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }

	.hero { flex-direction: column; min-height: auto; }
	.hero__content { padding: 90px 6vw 50px; max-width: none; }
	.hero__image { min-height: 320px; }
}

@media (max-width: 767px) {
	.site-header__inner { flex-direction: column; text-align: center; padding: 16px; }
	.site-header__title { order: -1; }

	h1, .hero__title { font-size: 28px; }
	section > h2, .services__heading h2, .testimonials__heading h2 { font-size: 24px; }

	.hero__content { padding: 60px 20px 40px; text-align: center; align-items: center; }
	.hero__lead { margin-left: auto; margin-right: auto; }
	.hero__scroll { top: 12px; }
	.hero__image { min-height: 220px; }

	.location__text { padding: 40px 20px; text-align: center; }
	.location__text .btn { margin: 0 auto; }
	.location__panel { min-height: 220px; }

	.services { padding: 50px 20px; }
	.services__grid { grid-template-columns: 1fr; }

	.testimonials { padding: 60px 20px; }

	.site-footer__top { grid-template-columns: 1fr; text-align: center; }
	.social-list { justify-content: center; }
	.site-footer__brand img { margin-left: auto; margin-right: auto; }
}
