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

:root {
	--blue-dark: #1a365d;
	--blue-medium: #2c5282;
	--blue-light: #3182ce;
	--cream: #faf8f5;
	--cream-dark: #f5f0eb;
	--wood: #c4956a;
	--wood-light: #d4a843;
	--text-dark: #1a1a1a;
	--text-medium: #4a4a4a;
	--text-light: #7a7a7a;
	--white: #ffffff;
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
	--shadow-md: 0 8px 30px rgba(0,0,0,0.1);
	--shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
	--radius: 12px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	line-height: 1.6;
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
}

.handwritten {
	font-family: 'Caveat', cursive;
}

/* ===== NAVIGATION ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 2rem;
	transition: all 0.4s;
}

.nav.scrolled {
	background: rgba(250, 248, 245, 0.95);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-sm);
	padding: 0.75rem 2rem;
}

.nav-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.nav-logo svg {
	width: 140px;
	height: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-medium);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--blue-dark);
	transition: width 0.3s;
}

.nav-links a:hover {
	color: var(--blue-dark);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-cta {
	background: var(--blue-dark);
	color: white !important;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-weight: 600 !important;
	transition: all 0.3s !important;
}

.nav-cta::after {
	display: none !important;
}

.nav-cta:hover {
	background: var(--blue-medium);
	transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 8rem 2rem 6rem;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg-line {
	position: absolute;
	opacity: 0.03;
}

.hero-bg-line:nth-child(1) {
	width: 2px;
	height: 100%;
	background: var(--blue-dark);
	left: 20%;
}

.hero-bg-line:nth-child(2) {
	width: 2px;
	height: 100%;
	background: var(--blue-dark);
	left: 50%;
}

.hero-bg-line:nth-child(3) {
	width: 2px;
	height: 100%;
	background: var(--blue-dark);
	left: 80%;
}

.hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	animation: fadeInUp 1s ease-out;
}

.hero-logo {
	margin-bottom: 2rem;
}

.hero-logo svg {
	width: 320px;
	height: auto;
}

.hero-tagline {
	font-family: 'Caveat', cursive;
	font-size: 1.5rem;
	color: var(--wood);
	margin-bottom: 1.5rem;
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero h1 span {
	color: var(--blue-dark);
}

.hero-desc {
	font-size: 1.1rem;
	color: var(--text-medium);
	margin-bottom: 2.5rem;
	max-width: 480px;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.3s;
	font-family: 'Inter', sans-serif;
}

.btn-primary {
	background: var(--blue-dark);
	color: white;
	box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
	background: var(--blue-medium);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--blue-dark);
	border: 2px solid var(--blue-dark);
}

.btn-secondary:hover {
	background: var(--blue-dark);
	color: white;
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	gap: 3rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue-dark);
}

.hero-stat-label {
	font-size: 0.8rem;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.25rem;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero-showcase {
	position: relative;
	width: 100%;
	max-width: 480px;
}

.hero-card {
	background: var(--white);
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	transform: rotate(-3deg);
	transition: transform 0.5s;
}

.hero-card:hover {
	transform: rotate(0deg) scale(1.02);
}

.hero-card-img {
	width: 100%;
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
}

.hero-card-body {
	padding: 1.5rem 2rem;
}

.hero-card-series {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--blue-dark);
	font-weight: 600;
}

.hero-card-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-top: 0.5rem;
}

.hero-floating {
	position: absolute;
	background: var(--white);
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-floating.top-right {
	top: -20px;
	right: -20px;
	animation: float 6s ease-in-out infinite;
}

.hero-floating.bottom-left {
	bottom: 40px;
	left: -30px;
	animation: float 6s ease-in-out infinite 2s;
}

.hero-floating-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.hero-floating-text {
	font-size: 0.8rem;
}

.hero-floating-text strong {
	display: block;
	font-size: 0.9rem;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
section {
	padding: 6rem 2rem;
}

.section-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-family: 'Caveat', cursive;
	font-size: 1.2rem;
	color: var(--wood);
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.05rem;
	color: var(--text-light);
	max-width: 560px;
	margin: 0 auto;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
	background: var(--white);
}

.philosophy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.philosophy-card {
	padding: 2.5rem;
	border-radius: var(--radius);
	background: var(--cream);
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
}

.philosophy-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--blue-dark);
	transition: height 0.4s;
}

.philosophy-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.philosophy-card:hover::before {
	height: 100%;
}

.philosophy-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.philosophy-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
}

.philosophy-desc {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
	background: var(--cream);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.product-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s;
	cursor: pointer;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.product-img {
	width: 100%;
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	position: relative;
}

.product-img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(transparent, var(--white));
}

.product-body {
	padding: 1.5rem 2rem 2rem;
}

.product-series {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--blue-dark);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.product-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.product-desc {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-price {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-dark);
}

.product-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--blue-dark);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all 0.3s;
}

.product-btn:hover {
	background: var(--blue-medium);
	transform: scale(1.1);
}

/* ===== QR SECTION ===== */
.qr-section {
	background: var(--blue-dark);
	color: white;
	position: relative;
	overflow: hidden;
}

.qr-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
	border-radius: 50%;
}

.qr-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.qr-content .section-label {
	color: var(--wood-light);
}

.qr-content .section-title {
	color: white;
}

.qr-content .section-subtitle {
	color: rgba(255,255,255,0.6);
	margin: 0;
}

.qr-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

.qr-feature {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.qr-feature-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: rgba(255,255,255,0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.qr-feature-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.qr-feature-desc {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.5);
	line-height: 1.5;
}

.qr-visual {
	display: flex;
	justify-content: center;
}

.qr-phone {
	width: 260px;
	background: #1a1a2e;
	border-radius: 36px;
	padding: 10px;
	box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.qr-screen {
	background: white;
	border-radius: 28px;
	overflow: hidden;
}

.qr-screen-header {
	background: var(--blue-dark);
	color: white;
	padding: 1rem;
	text-align: center;
}

.qr-screen-body {
	padding: 1rem;
}

.qr-screen-img {
	width: 100%;
	aspect-ratio: 1;
	background: var(--cream);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.qr-screen-lines {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.qr-screen-line {
	height: 6px;
	background: var(--cream-dark);
	border-radius: 3px;
}

.qr-screen-line:nth-child(1) { width: 100%; }
.qr-screen-line:nth-child(2) { width: 85%; }
.qr-screen-line:nth-child(3) { width: 70%; }

/* ===== SERIES ===== */
.series {
	background: var(--white);
}

.series-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.series-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--cream);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s;
	min-height: 280px;
}

.series-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.series-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	padding: 2rem;
}

.series-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.series-label {
	font-family: 'Caveat', cursive;
	font-size: 1rem;
	color: var(--wood);
	margin-bottom: 0.5rem;
}

.series-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.series-desc {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.series-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--blue-dark);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: gap 0.3s;
}

.series-link:hover {
	gap: 0.75rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
	background: var(--cream-dark);
	text-align: center;
}

.newsletter-form {
	display: flex;
	gap: 0.75rem;
	max-width: 480px;
	margin: 2rem auto 0;
}

.newsletter-input {
	flex: 1;
	padding: 1rem 1.5rem;
	border-radius: 50px;
	border: 2px solid rgba(0,0,0,0.08);
	background: var(--white);
	font-size: 0.95rem;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color 0.3s;
}

.newsletter-input:focus {
	border-color: var(--blue-dark);
}

.newsletter-btn {
	padding: 1rem 2rem;
	border-radius: 50px;
	background: var(--blue-dark);
	color: white;
	border: none;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	font-family: 'Inter', sans-serif;
	white-space: nowrap;
}

.newsletter-btn:hover {
	background: var(--blue-medium);
}

/* ===== FOOTER ===== */
.footer {
	background: var(--blue-dark);
	color: rgba(255,255,255,0.7);
	padding: 4rem 2rem 2rem;
}

.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand svg {
	width: 120px;
	margin-bottom: 1rem;
}

.footer-brand-desc {
	font-size: 0.9rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.footer-socials {
	display: flex;
	gap: 0.75rem;
}

.footer-social {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.footer-social:hover {
	background: var(--wood-light);
	transform: translateY(-2px);
}

.footer-col-title {
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
	background: var(--cream);
	padding: 6rem 2rem;
}

.social-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.social-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.social-card-header {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.social-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.social-card-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 700;
}

.social-card-subtitle {
	font-size: 0.8rem;
	color: var(--text-light);
}

.social-card-body {
	padding: 1.5rem;
}

.social-preview {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.social-cover {
	width: 100%;
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.social-avatar {
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
}

.social-post {
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.social-story {
	width: 100%;
	aspect-ratio: 9/16;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.social-specs {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-light);
}

.social-spec {
	display: flex;
	justify-content: space-between;
}

.social-spec strong {
	color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.hero-desc {
		margin: 0 auto 2.5rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-logo svg {
		width: 240px;
	}

	.philosophy-grid {
		grid-template-columns: 1fr;
	}

	.qr-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.qr-features {
		align-items: center;
	}

	.series-grid {
		grid-template-columns: 1fr;
	}

	.series-card {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.social-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero {
		padding: 6rem 1.5rem 4rem;
	}

	.hero-logo svg {
		width: 200px;
	}

	.hero-stats {
		gap: 2rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

/* ===== ANIMATIONS ===== */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
