:root {
	--cream: #faf8f4;
	--warm-white: #fffef9;
	--sage: #6b8f71;
	--sage-light: #d4e6d6;
	--sage-dark: #4a6b50;
	--text: #1a1a18;
	--text-muted: #5a5a54;
	--text-light: #8a8a82;
	--border: #e8e4dc;
	--accent: #c8a882;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	font-weight: 300;
	background: var(--warm-white);
	color: var(--text);
	overflow-x: hidden;
}

/* ==================== NAV ==================== */

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 2rem;
	background: rgba(255, 254, 249, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	animation: fadeDown 0.8s ease both;
}

.nav-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text);
	line-height: 1.2;
}

.nav-logo span {
	display: block;
	font-size: 0.7rem;
	font-weight: 400;
	font-family: 'DM Sans', sans-serif;
	color: var(--text-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-style: normal;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--sage-dark);
}

.nav-cta {
	background: var(--sage);
	color: white;
	padding: 0.6rem 1.4rem;
	border-radius: 100px;
	font-size: 0.82rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	white-space: nowrap;
}

.nav-cta:hover {
	background: var(--sage-dark);
	transform: translateY(-1px);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--text);
	transition: all 0.3s;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(255, 254, 249, 0.98);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	padding: 1.5rem 2rem;
	flex-direction: column;
	gap: 1.2rem;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	font-size: 1rem;
	color: var(--text-muted);
	text-decoration: none;
	padding: 0.3rem 0;
	border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-cta {
	margin-top: 0.5rem;
	text-align: center;
	border-bottom: none;
}

/* ==================== HERO ==================== */

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 80px;
	background: var(--cream);
	overflow: hidden;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	height: 100%;
	background: linear-gradient(135deg, var(--sage-light) 0%, #e8f0e9 100%);
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem 2rem 4rem 8%;
	animation: fadeUp 1s ease 0.2s both;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sage-dark);
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.hero-tag::before {
	content: '';
	display: block;
	width: 24px;
	height: 1px;
	background: var(--sage-dark);
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.8rem, 5vw, 4.2rem);
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 1.2rem;
	color: var(--text);
}

.hero h1 em {
	font-style: italic;
	color: var(--sage-dark);
}

.hero-sub {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.7;
	max-width: 420px;
	margin-bottom: 2.5rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--sage);
	color: white;
	padding: 0.9rem 2rem;
	border-radius: 100px;
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary:hover {
	background: var(--sage-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(107, 143, 113, 0.3);
}

.btn-secondary {
	border: 2px solid var(--border);
	padding: 0.9rem 2rem;
	border-radius: 100px;
	font-size: 0.88rem;
	font-weight: 400;
	text-decoration: none;
	color: var(--text);
	transition: all 0.25s;
}

.btn-secondary:hover {
	border-color: var(--sage);
	color: var(--sage-dark);
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.hero-stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--sage-dark);
}

.hero-stat-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 2px;
}

.hero-photo {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 2rem 4% 0;
	animation: fadeUp 1s ease 0.4s both;
}

.photo-placeholder {
	width: 100%;
	max-width: 400px;
	aspect-ratio: 3 / 4;
	background: linear-gradient(160deg, #c8deca 0%, #a8c8ab 50%, #8aad8e 100%);
	border-radius: 240px 240px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.photo-placeholder::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.15), transparent);
}

.photo-icon {
	font-size: 5rem;
	opacity: 0.5;
	margin-bottom: 1rem;
}

.photo-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	padding: 0 2rem;
}

.photo-badge {
	position: absolute;
	bottom: 2rem;
	right: -1rem;
	background: white;
	padding: 0.8rem 1.2rem;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	font-size: 0.78rem;
	color: var(--text);
	font-weight: 500;
	white-space: nowrap;
}

.photo-badge span {
	display: block;
	font-size: 0.65rem;
	color: var(--text-muted);
	font-weight: 300;
	margin-top: 1px;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(107, 143, 113, 0.2);
	animation: pulse 4s ease-in-out infinite;
}

/* ==================== SERVIZI ==================== */

.services {
	padding: 6rem 5%;
	background: var(--warm-white);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-tag {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sage-dark);
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
}

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--text);
	line-height: 1.2;
}

.section-title em {
	font-style: italic;
	color: var(--sage-dark);
}

.section-line {
	width: 48px;
	height: 2px;
	background: var(--sage);
	margin: 1.5rem auto 0;
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sage-light), var(--sage));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(107, 143, 113, 0.12);
	border-color: var(--sage-light);
}

.service-icon {
	width: 48px;
	height: 48px;
	background: var(--sage-light);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
}

.service-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.6rem;
	color: var(--text);
}

.service-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ==================== CHI SIAMO ==================== */

.about-section {
	background: var(--cream);
	padding: 6rem 5%;
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
}

.about-visual {
	position: relative;
}

.about-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(160deg, var(--sage-light), #b8d4bb);
	border-radius: 200px 200px 32px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: rgba(255, 255, 255, 0.5);
}

.about-card {
	position: absolute;
	bottom: -2rem;
	right: -2rem;
	background: white;
	border-radius: 16px;
	padding: 1.2rem 1.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	font-size: 0.82rem;
}

.about-card-title {
	font-weight: 500;
	margin-bottom: 4px;
}

.about-card-sub {
	color: var(--text-muted);
	font-size: 0.75rem;
}

.about-deco {
	position: absolute;
	top: -1.5rem;
	left: -1.5rem;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--sage-light);
	opacity: 0.5;
	z-index: -1;
}

.about-content p {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.75;
	margin-bottom: 1.2rem;
}

.credentials {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.credential {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--text);
}

.credential-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sage);
	flex-shrink: 0;
}

/* ==================== PERCHÉ NOI ==================== */

.why {
	padding: 6rem 5%;
	background: var(--sage-dark);
	color: white;
}

.why .section-tag {
	color: var(--sage-light);
}

.why .section-title {
	color: white;
}

.why .section-title em {
	color: var(--sage-light);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.why-item {
	text-align: center;
	padding: 2rem 1rem;
}

.why-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.15);
	line-height: 1;
	margin-bottom: 0.8rem;
}

.why-title {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.6rem;
	color: white;
}

.why-desc {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
}

/* ==================== RECENSIONI ==================== */

.reviews {
	padding: 6rem 5%;
	background: var(--warm-white);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.review-card {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.8rem;
}

.review-stars {
	color: var(--accent);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.review-text {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 1.2rem;
	font-style: italic;
}

.review-author {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text);
}

/* ==================== CONTATTI ==================== */

.contact-section {
	background: var(--cream);
	padding: 6rem 5%;
}

.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-info h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 400;
	margin-bottom: 1rem;
}

.contact-info h2 em {
	font-style: italic;
	color: var(--sage-dark);
}

.contact-info p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.88rem;
}

.contact-item-icon {
	width: 36px;
	height: 36px;
	background: var(--sage-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
}

.contact-item-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-light);
	margin-bottom: 2px;
}

.contact-item-text {
	color: var(--text-muted);
	line-height: 1.5;
}

.form-wrap {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-group label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin-bottom: 6px;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0.8rem 1rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.9rem;
	font-weight: 300;
	color: var(--text);
	background: var(--cream);
	outline: none;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--sage);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.submit-btn {
	width: 100%;
	background: var(--sage);
	color: white;
	border: none;
	border-radius: 100px;
	padding: 1rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s;
}

.submit-btn:hover {
	background: var(--sage-dark);
	transform: translateY(-1px);
}

.submit-btn.sent {
	background: var(--sage-dark);
	cursor: default;
}

/* ==================== FOOTER ==================== */

footer {
	background: var(--text);
	color: rgba(255, 255, 255, 0.5);
	padding: 3rem 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8rem;
}

.footer-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	font-weight: 600;
	color: white;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	font-size: 0.78rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: white;
}

/* ==================== ANIMAZIONI ==================== */

@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.4;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.2;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
	nav {
		padding: 1rem 1.2rem;
	}

	.nav-links,
	.nav-cta {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero::before {
		width: 100%;
		height: 45%;
	}

	.hero-content {
		padding: 3rem 1.5rem 2rem;
		text-align: center;
		align-items: center;
	}

	.hero-tag {
		justify-content: center;
	}

	.hero-sub {
		text-align: center;
	}

	.hero-photo {
		padding: 0 1.5rem;
	}

	.photo-placeholder {
		border-radius: 160px 160px 0 0;
		max-width: 280px;
	}

	.photo-badge {
		right: 0;
		bottom: 1rem;
	}

	.hero-stats {
		justify-content: center;
	}

	.about {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-card {
		right: 0;
		bottom: -1rem;
	}

	.contact {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}
