:root {
	--ink: #1c232b;
	--muted: #65717f;
	--line: #d8dee6;
	--paper: #fbfaf8;
	--soft: #eef4f2;
	--rose: #c4495d;
	--rose-dark: #9d3145;
	--teal: #1c776f;
	--gold: #c69032;
	--white: #fff;
	--shadow: 0 20px 55px rgba(22, 31, 40, .14)
}
* {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth
}
body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--ink);
	background: var(--paper)
}
a {
	color: inherit;
	text-decoration: none
}
img {
	display: block;
	width: 100%
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 72px;
	padding: 12px clamp(18px, 4vw, 56px);
	background: rgba(251, 250, 248, .92);
	border-bottom: 1px solid rgba(216, 222, 230, .8);
	backdrop-filter: blur(14px)
}
.brand, .header-actions, .main-nav {
	display: flex;
	align-items: center
}
.brand {
	gap: 10px;
	font-weight: 800
}
.brand-mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	color: var(--white);
	background: var(--rose)
}
.main-nav {
	gap: clamp(12px, 2vw, 28px);
	color: #3d4854;
	font-size: .95rem;
	font-weight: 600
}
.main-nav a:hover, .footer-links a:hover {
	color: var(--rose-dark)
}
.header-actions {
	gap: 10px
}
.language-picker {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: .85rem;
	font-weight: 600
}
select, textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
	font: inherit
}
select {
	min-height: 42px;
	padding: 0 34px 0 12px
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border: 0;
	border-radius: 8px;
	color: var(--white);
	background: var(--rose);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(196, 73, 93, .22)
}
.button:hover {
	background: var(--rose-dark)
}
.button-small {
	min-height: 40px;
	padding: 0 16px
}
.button-secondary {
	color: var(--teal);
	background: #e7f3f1;
	box-shadow: none
}
.button-secondary:hover {
	color: var(--white);
	background: var(--teal)
}
.hero {
	position: relative;
	min-height: calc(100vh - 72px);
	display: grid;
	align-items: end;
	overflow: hidden
}
.hero-media, .hero-overlay {
	position: absolute;
	inset: 0
}
.hero-media {
	background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=2200&q=82');
	background-position: center;
	background-size: cover;
	transform: scale(1.02)
}
.hero-overlay {
	background: linear-gradient(90deg, rgba(18, 25, 31, .82), rgba(18, 25, 31, .4), rgba(18, 25, 31, .08)), linear-gradient(0deg, rgba(18, 25, 31, .28), transparent 45%)
}
.hero-content {
	position: relative;
	width: min(1160px, calc(100% - 36px));
	margin: 0 auto;
	padding: 70px 0 54px;
	color: var(--white)
}
.eyebrow {
	margin: 0 0 10px;
	color: var(--gold);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase
}
.hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(3.1rem, 8vw, 7.4rem);
	line-height: .92
}
.hero-copy {
	max-width: 660px;
	margin: 22px 0 32px;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.6
}
.search-panel {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	gap: 12px;
	width: min(1040px, 100%);
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 8px;
	background: rgba(255, 255, 255, .94);
	box-shadow: var(--shadow)
}
.search-panel label {
	display: block;
	margin: 0 0 6px;
	color: #4a5662;
	font-size: .78rem;
	font-weight: 800
}
.trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--line);
	background: var(--white)
}
.trust-strip div {
	min-height: 116px;
	padding: 26px clamp(18px, 4vw, 48px);
	border-right: 1px solid var(--line)
}
.trust-strip strong {
	display: block;
	margin-bottom: 6px;
	color: var(--teal);
	font-size: 2rem
}
.trust-strip span {
	color: var(--muted);
	font-weight: 700
}
.section {
	padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 56px)
}
.soft {
	background: var(--soft)
}
.section-heading {
	max-width: 760px;
	margin-bottom: 34px
}
.section-heading h2, .split h2, .cta-section h2 {
	margin: 0 0 12px;
	font-size: clamp(2rem, 4vw, 3.8rem);
	line-height: 1.05
}
.section-heading p, .split p, .cta-section p {
	color: var(--muted);
	line-height: 1.7
}
.service-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr;
	gap: 18px
}
.service-card, .profile-card, .safety-grid article, blockquote {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white)
}
.service-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 26px
}
.service-card.featured {
	border-color: rgba(196, 73, 93, .35);
	box-shadow: var(--shadow)
}
.service-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px
}
.badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	color: var(--rose-dark);
	background: #fae7eb;
	font-size: .78rem;
	font-weight: 800
}
.rating {
	color: var(--gold);
	font-weight: 900
}
.service-card h3, .profile-card h3, .safety-grid h3 {
	margin: 0;
	font-size: 1.35rem
}
.service-card p, .service-card li, .profile-card p, .safety-grid p, blockquote p {
	color: var(--muted);
	line-height: 1.65
}
.service-card ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 18px
}
.service-card small {
	color: var(--muted);
	line-height: 1.45
}
.profile-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}
.profile-card {
	overflow: hidden
}
.profile-card img {
	aspect-ratio: 4/5;
	object-fit: cover
}
.profile-card div {
	padding: 18px
}
.profile-card span {
	display: inline-flex;
	margin-top: 8px;
	color: var(--teal);
	font-size: .86rem;
	font-weight: 800
}
.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
	gap: clamp(28px, 6vw, 72px);
	align-items: center
}
.translator-box {
	display: grid;
	gap: 12px;
	max-width: 700px;
	margin-top: 24px
}
textarea {
	min-height: 130px;
	padding: 14px;
	resize: vertical
}
.translator-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: end
}
.translator-controls label {
	display: grid;
	gap: 6px;
	color: var(--muted);
	font-size: .85rem;
	font-weight: 700
}
.translator-controls select {
	min-width: 150px
}
.translation-output {
	min-height: 76px;
	padding: 16px;
	border-radius: 8px;
	color: #173d39;
	background: #e7f3f1;
	line-height: 1.6
}
.feature-list {
	display: grid;
	gap: 12px
}
.feature-list div {
	padding: 22px;
	border-left: 4px solid var(--teal);
	background: var(--white)
}
.feature-list strong {
	display: block;
	margin-bottom: 8px
}
.safety-grid, .story-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}
.safety-grid article, blockquote {
	margin: 0;
	padding: 26px
}
.safety-grid span {
	color: var(--rose);
	font-weight: 900
}
blockquote cite {
	color: var(--ink);
	font-style: normal;
	font-weight: 800
}
.cta-section {
	padding: clamp(64px, 8vw, 112px) 18px;
	text-align: center;
	color: var(--white);
	background: linear-gradient(rgba(28, 35, 43, .64), rgba(28, 35, 43, .64)), url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1800&q=82') center/cover
}
.cta-section p {
	max-width: 620px;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, .84)
}
.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 34px clamp(18px, 4vw, 56px);
	background: #182027;
	color: var(--white)
}
.site-footer p {
	max-width: 740px;
	color: rgba(255, 255, 255, .7);
	line-height: 1.6
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-content: flex-start;
	color: rgba(255, 255, 255, .78);
	font-weight: 700
}
.toast {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 30;
	max-width: min(380px, calc(100% - 36px));
	padding: 14px 16px;
	border-radius: 8px;
	color: var(--white);
	background: #1c232b;
	box-shadow: var(--shadow);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease
}
.toast.visible {
	opacity: 1;
	transform: translateY(0)
}
@media (max-width:980px) {
	.site-header {
		align-items: flex-start;
		flex-wrap: wrap
	}
	.main-nav {
		order: 3;
		width: 100%;
		overflow-x: auto;
		padding-bottom: 2px
	}
	.search-panel, .service-grid, .profile-grid, .split, .safety-grid, .story-grid {
		grid-template-columns: 1fr 1fr
	}
	.search-panel .button {
		grid-column: span 2
	}
}
@media (max-width:680px) {
	.site-header {
		min-height: auto
	}
	.brand {
		width: 100%
	}
	.header-actions {
		width: 100%;
		justify-content: space-between
	}
	.language-picker {
		flex: 1
	}
	.hero {
		min-height: 760px
	}
	.hero h1 {
		font-size: clamp(3rem, 15vw, 4.8rem)
	}
	.search-panel, .service-grid, .profile-grid, .split, .safety-grid, .story-grid, .trust-strip {
		grid-template-columns: 1fr
	}
	.search-panel .button {
		grid-column: auto
	}
	.trust-strip div {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line)
	}
	.site-footer {
		display: block
	}
}
/* Catalog page */
input[type="search"] {
  width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid var(--line);
  border-radius: 8px; background: var(--white); color: var(--ink); font: inherit;
}
.catalog-hero { padding: clamp(62px, 8vw, 100px) clamp(18px, 4vw, 56px) 42px; text-align: center; background: var(--soft); }
.catalog-hero h1 { margin: 0 0 14px; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; }
.catalog-hero > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 26px; color: var(--muted); line-height: 1.65; }
.catalog-search { display: block; width: min(620px, 100%); margin: 0 auto; }
.catalog-section { padding-top: 38px; }
.banner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; width: 100%; }
.banner-item { display: flex; flex-direction: column; align-items: center; min-width: 0; padding: 14px 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.banner-item:hover, .banner-item:focus-visible { transform: translateY(-4px); border-color: rgba(196,73,93,.42); box-shadow: 0 12px 30px rgba(22,31,40,.12); outline: none; }
.banner-item img { width: 150px; height: 150px; max-width: 100%; object-fit: contain; border-radius: 8px; background: #fff; }
.banner-title { max-width: 150px; margin-top: 10px; overflow-wrap: anywhere; text-align: center; font-size: .92rem; font-weight: 800; }
.empty-state { padding: 40px 10px; text-align: center; color: var(--muted); font-weight: 700; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 400px) { .banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .banner-item { padding: 8px 4px; } .banner-item img { width: 140px; height: 140px; } }
