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

:root {
	--blue: #0733c1;
	--pink: #ff3ea7;
	--charcoal-willow: #334155;
	--zinc-white: #ffffff;
	--intelligence-green: #09d1cf;
	--seaweed-violet: #a23ae4;
	--salicylic-coral: #ff615c;
	--connemara-mist: #b1c3ff;
	--blush-pink: #ffacd9;
	--light-bg: #f4f6ff;
	--footer-bg: #021a7a;
	--mineral-mist: #C7F0EA;
	--font: "Montserrat", sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--font);
	color: var(--charcoal-willow);
	background: var(--zinc-white);
	overflow-x: hidden;
	line-height: 1.6;
}

/* ─── NAV ─────────────────────────────────────────────── */

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 3rem;
	background: rgba(7, 51, 193, 0.97); /* --blue at 0.97 opacity */
	backdrop-filter: blur(8px);
}

.nav-logo {
	display: flex;
	align-items: center;
}

.nav-logo-img {
	height: 52px;
	width: auto;
	display: block;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 2.5rem;
	margin-left: auto;
}

nav ul a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color 0.2s;
}

nav ul a:hover {
	color: var(--zinc-white);
}

.nav-contact {
	background: var(--pink);
	color: var(--zinc-white) !important;
	padding: 8px 18px;
	border-radius: 6px;
	font-weight: 600 !important;
	opacity: 1 !important;
}

.nav-lang {
	display: none;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.06em;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 5px 12px;
	border-radius: 4px;
	cursor: pointer;
	transition:
		color 0.2s,
		border-color 0.2s;
	text-decoration: none;
}

.nav-lang:hover {
	color: rgba(255, 255, 255, 0.85);
	border-color: rgba(255, 255, 255, 0.4);
}

/* ─── HERO ────────────────────────────────────────────── */

.hero {
	min-height: 80vh;
	background: var(--blue);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: calc(80px + 5rem) 3rem 6rem 10vw;
}

.hero-bg-circle {
	position: absolute;
	right: -180px;
	top: 50%;
	transform: translateY(-50%);
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.01);
	border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-bg-circle-2 {
	position: absolute;
	right: -80px;
	top: 50%;
	transform: translateY(-50%);
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 62, 167, 0.02); /* --pink at 0.02 opacity */
	border: 1px solid rgba(255, 62, 167, 0.04); /* --pink at 0.04 opacity */
}

.hero-visual {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 80px;
	width: 50%;
	z-index: 1;
}

.hero-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 65%;
	height: 100%;
	background: linear-gradient(to right, var(--blue), transparent);
	z-index: 2;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
	display: block;
}

.hero-content {
	position: relative;
	max-width: 45vw;
	z-index: 2;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 0.75rem;
}

.hero-tag-dot {
	width: 6px;
	height: 6px;
	background: var(--pink);
	border-radius: 50%;
}

.hero-tag span {
	font-size: 0.72rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1 {
	font-size: clamp(2.6rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--zinc-white);
	line-height: 1.12;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
}

.hero h1 em {
	font-style: italic;
	color: var(--pink);
	font-weight: 600;
}

.hero-lead {
	font-size: 1.05rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 2.5rem;
}

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

.hero-origin {
	position: absolute;
	bottom: 2rem;
	right: 3rem;
	font-size: 0.7rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	z-index: 2;
}

/* ─── BUTTONS ─────────────────────────────────────────── */

.btn-primary {
	background: var(--pink);
	color: var(--zinc-white);
	padding: 14px 28px;
	border-radius: 8px;
	font-family: var(--font);
	font-size: 0.88rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition:
		opacity 0.2s,
		transform 0.15s;
	display: inline-block;
}

.btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.btn-secondary {
	background: transparent;
	color: var(--zinc-white);
	padding: 14px 28px;
	border-radius: 8px;
	font-family: var(--font);
	font-size: 0.88rem;
	font-weight: 500;
	border: 1.5px solid var(--zinc-white);
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.2s,
		color 0.2s;
	display: inline-block;
}

.btn-secondary:hover {
	background: var(--zinc-white);
	border-color: var(--zinc-white);
	color: var(--blue);
}

/* ─── SECTION SHARED ──────────────────────────────────── */

section {
	padding: 6rem 3rem;
}

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

.section-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	color: var(--blue);
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 1.2rem;
}

.section-title em {
	font-style: italic;
	color: var(--pink);
	font-weight: 600;
}

.section-lead {
	font-size: 1rem;
	color: var(--charcoal-willow);
	line-height: 1.75;
	max-width: 620px;
	opacity: 0.8;
	margin-bottom: 3rem;
}

/* ─── STORY ───────────────────────────────────────────── */

.story {
	background: var(--zinc-white);
}

.story-grid {
	display: grid;
	grid-template-columns: 55fr 45fr;
	gap: 4rem;
	align-items: start;
	margin-top: 2.5rem;
}

.story-text {
	max-width: 600px;
}

.story-text p {
	font-size: 1rem;
	line-height: 1.85;
	color: var(--charcoal-willow);
	margin-bottom: 1.4rem;
}

.story-text p:last-child {
	margin-bottom: 0;
}

.story-text p strong {
	color: var(--blue);
	font-weight: 600;
}

.photo-slot {
	border-radius: 10px;
	overflow: hidden;
	background: transparent;
}

.photo-slot img {
	width: 100%;
	height: auto;
	display: block;
}

/* Story right-column carousel */
.story-carousel {
	position: relative;
	height: 420px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.story-carousel-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.story-carousel-slide.active {
	opacity: 1;
}

.story-carousel-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.story-slide-pharmacist img {
	filter: sepia(0.35) contrast(1.02) brightness(0.97);
}

.story-slide-newspaper img {
	filter: sepia(0.3) contrast(1.05);
}

.story-slide-newspaper::after,
.story-slide-street::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
	pointer-events: none;
	z-index: 1;
}

.story-slide-street img {
	filter: sepia(0.4) contrast(1.05) brightness(0.95);
}

.photo-slot-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}

.photo-slot-placeholder span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blue);
	opacity: 0.45;
}


/* ─── PRODUCTS ────────────────────────────────────────── */

.products {
	background: var(--light-bg);
}

.products-header {
	margin-bottom: 3rem;
}

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

.product-card {
	background: var(--zinc-white);
	border-radius: 12px;
	padding: 2rem 1.75rem;
	border: 1px solid rgba(7, 51, 193, 0.08); /* --blue at 0.08 opacity */
	transition: border-color 0.2s;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	border-color: rgba(7, 51, 193, 0.2); /* --blue at 0.2 opacity */
}

.product-card-num {
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--pink);
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.product-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 0.6rem;
}

.product-card p {
	font-size: 0.85rem;
	color: var(--charcoal-willow);
	opacity: 0.75;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.product-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 100px;
	margin-top: auto;
}

.badge-launching {
	background: rgba(255, 62, 167, 0.1); /* --pink at 0.1 opacity */
	color: var(--pink);
}

.badge-available {
	background: rgba(9, 209, 207, 0.12); /* --intelligence-green at 0.12 opacity */
	color: #057e7d; /* no variable — dark teal text, flagged for review */
}

.products-note {
	margin-top: 2.5rem;
	font-size: 0.85rem;
	color: var(--charcoal-willow);
	opacity: 0.55;
	font-style: italic;
}

/* ─── TEAM ────────────────────────────────────────────── */

.team {
	background: var(--zinc-white);
}

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

.team-card {
	background: var(--light-bg);
	border-radius: 12px;
	padding: 1.75rem;
	border: 1px solid rgba(7, 51, 193, 0.06); /* --blue at 0.06 opacity */
	display: grid;
	grid-template-columns: 92px 1fr;
	grid-template-rows: auto auto auto;
	column-gap: 1.25rem;
	align-items: center;
}

.team-avatar {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--connemara-mist), var(--blush-pink));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--blue);
	overflow: hidden;
	flex-shrink: 0;
	grid-column: 1;
	grid-row: 1 / 3;
	align-self: center;
}

.team-avatar--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 3px;
	grid-column: 2;
	grid-row: 1;
	align-self: end;
}

.team-role {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--pink);
	letter-spacing: 0.02em;
	grid-column: 2;
	grid-row: 2;
	align-self: start;
}

.team-bio {
	font-size: 0.8rem;
	color: var(--charcoal-willow);
	opacity: 0.7;
	line-height: 1.65;
	grid-column: 1 / 3;
	grid-row: 3;
	margin-top: 1rem;
}

/* ─── TESTIMONIAL ─────────────────────────────────────── */

.testimonial {
	background: var(--blue);
	padding: 5rem 3rem;
	position: relative;
	overflow: hidden;
}

.testimonial-bg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 62, 167, 0.05); /* --pink at 0.05 opacity */
	pointer-events: none;
}

.testimonial-inner {
	position: relative;
	z-index: 2;
	max-width: fit-content;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 100px auto;
	gap: 3rem;
	align-items: center;
}

.testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.testimonial blockquote {
	position: relative;
	text-align: left;
}

.testimonial-mark {
	font-size: 5rem;
	line-height: 0.8;
	color: var(--pink);
	font-family: Georgia, serif;
	display: block;
	margin-bottom: 1.5rem;
	opacity: 0.7;
}

.testimonial-quote {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	font-style: italic;
	color: var(--zinc-white);
	line-height: 1.45;
	letter-spacing: -0.01em;
	margin-bottom: 2rem;
}

.testimonial-attr {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.testimonial-attr span {
	color: var(--pink);
}

/* ─── TESTIMONIALS GRID ───────────────────────────────── */

.testimonials-grid {
	background: var(--zinc-white);
	padding: 3rem 3rem;
}

.testimonials-grid .section-inner {
	max-width: 1265px;
}

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

.tcard {
	background: var(--light-bg);
	border-radius: 10px;
	padding: 1.5rem 1.75rem;
	display: flex;
	flex-direction: row;
	gap: 1.25rem;
	align-items: flex-start;
	box-shadow: 0 2px 12px rgba(7, 51, 193, 0.07); /* --blue at 0.07 opacity */
}

.tcard-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(7, 51, 193, 0.12); /* --blue at 0.12 opacity */
	flex-shrink: 0;
	overflow: hidden;
	align-self: center;
}

.tcard-photo--initial {
	background: var(--blue);
	color: var(--zinc-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.tcard-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tcard-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.tcard-mark {
	font-size: 1.75rem;
	line-height: 1;
	color: var(--pink);
	font-family: Georgia, serif;
	opacity: 0.6;
}

.tcard-quote {
	font-size: 0.875rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.65;
	color: var(--charcoal-willow);
}

.tcard-attr {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.4);
	margin-top: 0.25rem;
}

.tcard-attr span {
	color: var(--pink);
}

/* ─── CONTACT ─────────────────────────────────────────── */

.contact {
	background: var(--blue);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact .section-title {
	color: var(--zinc-white);
}


.contact .section-tag {
	color: var(--pink);
}


/* ─── FOOTER ──────────────────────────────────────────── */

footer {
	background: var(--footer-bg);
	padding: 2.5rem 3rem 1.5rem;
}

.footer-body {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
	gap: 2.5rem;
	align-items: start;
	margin-bottom: 2rem;
}

.footer-col--brand img {
	display: block;
	margin-bottom: 0.6rem;
}

.footer-tagline {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45); /* --zinc-white at 0.45 opacity */
	font-style: italic;
}

.footer-col--addresses {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-phone {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--zinc-white);
	line-height: 1.5;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.footer-nav a {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.75); /* --zinc-white at 0.75 opacity */
	text-decoration: none;
	transition: color 0.2s;
}

.footer-nav a:hover {
	color: var(--pink);
}

.footer-address-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 0.5rem;
}

.footer-detail {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8); /* --zinc-white at 0.8 opacity */
	line-height: 1.9;
}

.footer-copyright {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.3); /* --zinc-white at 0.3 opacity */
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.25rem;
}

/* ─── ANIMATIONS ──────────────────────────────────────── */

.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ─── EMAIL MODAL ─────────────────────────────────────── */

.email-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.email-modal.open {
	opacity: 1;
	pointer-events: all;
}

.email-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.email-modal-panel {
	position: relative;
	z-index: 1;
	background: var(--zinc-white);
	border-radius: 14px;
	padding: 1.5rem;
	width: 280px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.email-modal-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 0.75rem;
}

.email-modal-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	border: none;
	background: transparent;
	font-family: var(--font);
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--charcoal-willow);
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s;
}

.email-modal-option:hover {
	background: var(--light-bg);
	color: var(--blue);
}

.email-modal-option svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--blue);
}

.email-modal-copy {
	border-top: 1px solid rgba(7, 51, 193, 0.08); /* --blue at 0.08 opacity */
	margin-top: 0.5rem;
	padding-top: 1rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 960px) {

	.testimonial-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.testimonial-avatar {
		width: 100px;
		height: 100px;
		margin: 0 auto;
	}

	.testimonial blockquote {
		text-align: center;
	}

	.testimonials-grid-cards {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 1rem 1.5rem;
	}

	nav ul {
		display: none;
	}

	.nav-lang {
		display: none;
	}

	section {
		padding: 4rem 1.5rem;
	}

	.hero {
		padding: 7rem 1.5rem 4rem;
		min-height: auto;
	}

	.hero-visual {
		display: none;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-origin {
		display: none;
	}

	.photo-collage {
		grid-template-columns: 1fr;
		height: auto;
	}

	.photo-collage-main,
	.photo-collage-stack .photo-slot {
		height: 200px;
	}

	.photo-collage-stack {
		height: auto;
	}

	.story-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.story-carousel {
		height: 300px;
	}

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

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

	.footer-body {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-copyright {
		text-align: center;
	}
}
