:root {
  --bg: #f3f4f8;
  --bg-alt: #ffffff;
  --header-bg: linear-gradient(90deg, #4f46e5, #ec4899);
  --card-bg: #ffffff;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.06);
  --accent-strong: rgba(79, 70, 229, 0.12);
  --text: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 1.25rem;
  --radius-md: 0.85rem;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --transition: 0.18s ease;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #e5e7eb 0, transparent 60%),
    radial-gradient(circle at bottom right, #e0f2fe 0, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148,163,184,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-image: var(--header-bg);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.55);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  padding: 0.25rem 0;
  position: relative;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0f172a;
  margin: 4px 0;
  border-radius: 999px;
}

main {
  padding-bottom: 3rem;
}

.section {
  padding: 3rem 0;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.hero {
  padding: 2.3rem 0 1.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.hero-highlight {
  display: inline-block;
  background: var(--header-bg);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.hero-stats dt {
  font-weight: 600;
  font-size: 1.2rem;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-media img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  object-fit: cover;
}

.section-title {
  margin-top: 0;
}

.section-lead {
  margin: 0.1rem 0 1.5rem;
  color: var(--muted);
  max-width: 32rem;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
}

.btn-primary {
  background-image: var(--header-bg);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(148,163,184,0.8);
}

.btn-ghost:hover {
  background: rgba(248,250,252,0.9);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

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

.cards-grid .card {
  height: 100%;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5px;
  background: var(--accent-strong);
}

.card h3,
.card h2 {
  margin-top: 0.5rem;
}

.card-thumb {
  margin: -1.1rem -1.2rem 0.6rem;
  height: 150px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  border-radius: 0.9rem;
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.full-width-img {
  width: 100%;
  border-radius: 0.9rem;
  margin-bottom: 0.7rem;
  object-fit: cover;
}

.map-figure img {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
}

.map-figure figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.list {
  padding-left: 1.1rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid rgba(148,163,184,0.35);
  padding: 2rem 0 2.5rem;
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-block h4,
.footer-block h5 {
  margin: 0 0 0.45rem;
}

.footer-block a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.footer-copy {
  flex-basis: 100%;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.layout-split {
  align-items: flex-start;
}

.contact-layout {
  gap: 2rem;
}

.form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  padding: 0.55rem 0.75rem;
  background: #f9fafb;
  color: var(--text);
  font: inherit;
  margin-top: 0.15rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.filters input,
.filters select {
  margin-top: 0.25rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
}

.price {
  font-weight: 600;
  color: #4f46e5;
}

.product-card {
  cursor: default;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 30;
}

.cookie-banner--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  background: #ffffff;
}
