/*
  Tby Arbor – Premium Beauty & Cosmetics Website
  Datei: styles.css
  Mobile-first, responsiv, weich animiert, luxuriöse Farbwelt.
*/

/* ========== CSS Reset (minimal, modern) ========== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 138, 59, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Screenreader only */
.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;
}

/* ========== Design Tokens ========== */
:root {
  /* Luxury palette */
  --bg: #ffffff;
  --bg-soft: #fbf7f6;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-solid: #ffffff;

  --ink: #2b2322;
  --muted: rgba(43, 35, 34, 0.68);

  --rose: #f3d4de;
  --blush: #f7e6ea;
  --nude: #f4e9e2;
  --gold: #b88a3b;
  --gold-soft: rgba(184, 138, 59, 0.18);

  --shadow: 0 18px 60px rgba(20, 12, 10, 0.08);
  --shadow-soft: 0 10px 30px rgba(20, 12, 10, 0.07);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1120px;

  --ease: cubic-bezier(.2, .9, .2, 1);
}

/* ========== Layout Helpers ========== */
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.25rem 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-soft), #ffffff);
}

.section__header {
  max-width: 60ch;
  margin-bottom: 1.75rem;
}

.section__grid {
  display: grid;
  gap: 2rem;
}

.section__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 400;
  font-size: 1.05rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.muted { color: var(--muted); }

.rounded-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 138, 59, 0.18);
}

/* ========== Skip Link ========== */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--panel-solid);
  border: 1px solid rgba(184, 138, 59, 0.22);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform 220ms var(--ease);
  z-index: 9999;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 138, 59, 0.14);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(20, 12, 10, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247, 230, 234, 0.85), rgba(231, 212, 166, 0.55));
  border: 1px solid rgba(184, 138, 59, 0.2);
  box-shadow: 0 10px 25px rgba(20, 12, 10, 0.06);
}

.brand__text { display: grid; line-height: 1.1; }
.brand__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand__tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Mobile menu toggle */
.nav__toggle {
  background: transparent;
  border: 1px solid rgba(184, 138, 59, 0.18);
  border-radius: 14px;
  padding: 0.6rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(20, 12, 10, 0.05);
}

.nav__toggle-lines {
  display: block;
  width: 22px;
  height: 14px;
  position: relative;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after,
.nav__toggle-lines {
  background: transparent;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: rgba(43, 35, 34, 0.85);
  transition: transform 220ms var(--ease), top 220ms var(--ease), opacity 220ms var(--ease);
}
.nav__toggle-lines::before { top: 3px; }
.nav__toggle-lines::after { top: 10px; }

.nav__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 138, 59, 0.14);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav__menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0;
  display: grid;
  gap: 0.4rem;
}

.nav__link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(43, 35, 34, 0.88);
  transition: background-color 200ms var(--ease), transform 200ms var(--ease);
}
.nav__link:hover {
  background: rgba(247, 230, 234, 0.65);
  transform: translateY(-1px);
  text-decoration: none;
}

.nav__cta {
  padding: 0 1rem 1rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background-color 200ms var(--ease);
  text-decoration: none;
  font-weight: 600;
}

.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, rgba(184, 138, 59, 0.95), rgba(231, 212, 166, 0.9));
  color: #2b2322;
  box-shadow: 0 18px 45px rgba(184, 138, 59, 0.23);
  border-color: rgba(184, 138, 59, 0.22);
}
.btn--primary:hover { transform: translateY(-2px); text-decoration: none; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(184, 138, 59, 0.22);
  box-shadow: 0 12px 35px rgba(20, 12, 10, 0.06);
}
.btn--ghost:hover { transform: translateY(-2px); text-decoration: none; }

.btn--soft {
  background: rgba(247, 230, 234, 0.65);
  border-color: rgba(184, 138, 59, 0.16);
}
.btn--soft:hover { transform: translateY(-2px); text-decoration: none; }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 4.25rem 0 2.75rem;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(243, 212, 222, 0.45), transparent 60%),
    radial-gradient(700px 350px at 85% 25%, rgba(231, 212, 166, 0.38), transparent 60%),
    linear-gradient(180deg, rgba(251, 247, 246, 1), rgba(255, 255, 255, 1));
}

.hero__glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(700px 260px at 60% 0%, rgba(184, 138, 59, 0.15), transparent 60%),
    radial-gradient(600px 280px at 0% 60%, rgba(243, 212, 222, 0.18), transparent 55%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}

.hero__lead {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero__media {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 138, 59, 0.18);
}

.hero__meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.meta-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  box-shadow: 0 14px 30px rgba(20, 12, 10, 0.06);
}
.meta-card__title { margin: 0; font-weight: 700; }
.meta-card__text { margin: 0.2rem 0 0; color: var(--muted); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 138, 59, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(20, 12, 10, 0.05);
}
.badge__icon {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(184, 138, 59, 0.12);
  color: rgba(43, 35, 34, 0.85);
  font-weight: 900;
}

/* ========== About Section Extras ========== */
.callout {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(247, 230, 234, 0.55);
  border: 1px solid rgba(184, 138, 59, 0.16);
  box-shadow: 0 14px 30px rgba(20, 12, 10, 0.06);
}
.callout__title { margin: 0; font-weight: 700; }
.callout__text { margin: 0.2rem 0 0; color: var(--muted); }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.mini-stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.85rem;
  box-shadow: 0 10px 26px rgba(20, 12, 10, 0.05);
}
.mini-stat__num {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
}
.mini-stat__label { color: var(--muted); font-size: 0.85rem; }

/* ========== Cards (Services) ========== */
.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem;
  box-shadow: 0 16px 45px rgba(20, 12, 10, 0.06);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(20, 12, 10, 0.09);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247, 230, 234, 0.8), rgba(231, 212, 166, 0.35));
  border: 1px solid rgba(184, 138, 59, 0.18);
  color: rgba(43, 35, 34, 0.86);
  margin-bottom: 0.7rem;
}

.card__title {
  margin: 0.2rem 0 0.45rem;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
}
.card__text { margin: 0 0 0.85rem; color: var(--muted); }

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(43, 35, 34, 0.82);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(184, 138, 59, 0.65);
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* ========== Filters / Products ========== */
.filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 1rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 59, 0.18);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease);
}
.filter-btn:hover { transform: translateY(-1px); }
.filter-btn.is-active {
  background: rgba(231, 212, 166, 0.45);
  border-color: rgba(184, 138, 59, 0.28);
}

.filters__status {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(20, 12, 10, 0.06);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(20, 12, 10, 0.09);
}

.product-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-card__body { padding: 1rem 1rem 1.1rem; }
.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(247, 230, 234, 0.7);
  border: 1px solid rgba(184, 138, 59, 0.14);
}
.price { font-weight: 800; color: rgba(43, 35, 34, 0.86); }

.product-card__title {
  margin: 0.25rem 0 0.35rem;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
}
.product-card__text { margin: 0 0 0.85rem; color: var(--muted); }

.product-card.is-hidden {
  display: none;
}

/* ========== Quality / Checklist / Seals ========== */
.checklist {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}
.checklist__item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.8rem;
  align-items: start;
}
.checklist__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, rgba(184, 138, 59, 0.95), rgba(231, 212, 166, 0.9));
  box-shadow: 0 10px 25px rgba(184, 138, 59, 0.22);
}
.checklist__title { margin: 0; font-weight: 800; }

.seal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}
.seal {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 59, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 20px rgba(20, 12, 10, 0.05);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ========== Slider (Gallery) ========== */
.slider {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 16px 45px rgba(20, 12, 10, 0.06);
}

.slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.slider__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
}

.slider__controls { display: flex; gap: 0.5rem; }

.slider__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 59, 0.18);
  background: rgba(247, 230, 234, 0.55);
  cursor: pointer;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 200ms var(--ease);
}
.slider__btn:hover { transform: translateY(-1px); }

.slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 138, 59, 0.12);
}

/* Hide scrollbar visually (still scrollable) */
.slider__viewport::-webkit-scrollbar { height: 10px; }
.slider__viewport::-webkit-scrollbar-thumb {
  background: rgba(184, 138, 59, 0.18);
  border-radius: 999px;
}
.slider__viewport::-webkit-scrollbar-track { background: transparent; }

.slider__track {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem;
}

.slide {
  margin: 0;
  min-width: 82%;
  scroll-snap-align: start;
}
.slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 35px rgba(20, 12, 10, 0.06);
  border: 1px solid rgba(184, 138, 59, 0.12);
}
.slide figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.slider__hint { margin: 0.85rem 0 0; }

/* ========== Testimonials ========== */
.testimonials {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  box-shadow: 0 16px 45px rgba(20, 12, 10, 0.06);
}

.stars {
  letter-spacing: 0.12em;
  color: rgba(184, 138, 59, 0.9);
  font-weight: 900;
  font-size: 0.95rem;
}

.testimonial blockquote {
  margin: 0.75rem 0 0.8rem;
  color: rgba(43, 35, 34, 0.85);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}
.who { font-weight: 800; color: rgba(43, 35, 34, 0.85); }

/* ========== Contact ========== */
.contact-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 138, 59, 0.14);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 30px rgba(20, 12, 10, 0.05);
}
.contact-card__title { margin: 0; font-weight: 800; }
.contact-card__text { margin: 0.25rem 0 0; color: var(--muted); }

.map img {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 138, 59, 0.14);
  box-shadow: var(--shadow);
}

.form-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 138, 59, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.form-card__title {
  margin: 0 0 0.25rem;
  font-family: "Playfair Display", serif;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.95rem;
}

label { font-weight: 700; font-size: 0.92rem; }

input, select, textarea {
  border-radius: 14px;
  border: 1px solid rgba(184, 138, 59, 0.16);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(20, 12, 10, 0.04);
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}

textarea { resize: vertical; min-height: 120px; }

input:focus, select:focus, textarea:focus {
  border-color: rgba(184, 138, 59, 0.42);
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1rem;
  color: rgba(43, 35, 34, 0.85);
}
.checkbox input { margin-top: 0.25rem; }

.error {
  min-height: 1.1em;
  display: block;
  color: rgba(150, 24, 24, 0.85);
  font-size: 0.86rem;
}

.is-invalid {
  border-color: rgba(150, 24, 24, 0.45) !important;
}

.form-note { margin: 0.9rem 0 0; }

/* ========== Newsletter ========== */
.newsletter {
  padding: 3.25rem 0 4.25rem;
}

.newsletter__box {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 138, 59, 0.16);
  background:
    radial-gradient(600px 260px at 15% 30%, rgba(243, 212, 222, 0.35), transparent 60%),
    radial-gradient(700px 280px at 85% 20%, rgba(231, 212, 166, 0.30), transparent 60%),
    rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.newsletter__form {
  display: grid;
  gap: 0.6rem;
}

.newsletter__form input {
  width: 100%;
}

.newsletter__note {
  margin: 0.2rem 0 0;
}

/* ========== Footer ========== */
.footer {
  padding: 2.6rem 0 1.5rem;
  background: linear-gradient(180deg, #ffffff, var(--bg-soft));
  border-top: 1px solid rgba(184, 138, 59, 0.14);
}

.footer__grid {
  display: grid;
  gap: 1.6rem;
}

.footer__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin: 0;
}

.footer__heading {
  margin: 0 0 0.6rem;
  font-weight: 800;
}

.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer__links a { color: rgba(43, 35, 34, 0.85); }

.imprint {
  font-style: normal;
  color: rgba(43, 35, 34, 0.8);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.75rem;
}
.social__link {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 59, 0.16);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 20px rgba(20, 12, 10, 0.05);
}

.footer__bottom {
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(184, 138, 59, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.back-to-top {
  color: rgba(43, 35, 34, 0.85);
  font-weight: 800;
}

/* ========== Reveal Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion respect (because some humans get motion-sick) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; transform: none; opacity: 1; }
  .btn, .card, .product-card { transition: none; }
}

/* ========== Responsive Enhancements ========== */
@media (min-width: 760px) {
  .section { padding: 5.25rem 0; }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
  }

  .hero__actions {
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    justify-content: start;
  }

  .section__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter__box {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 1.8rem 1.6rem;
  }

  .newsletter__form {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .newsletter__form .error,
  .newsletter__form .newsletter__note {
    grid-column: 1 / -1;
  }

  .slide { min-width: 55%; }
}

@media (min-width: 1024px) {
  .nav__toggle { display: none; }

  .nav__menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
  }

  .nav__cta { padding: 0; }

  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .slide { min-width: 45%; }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: start;
  }
}
html {
  scroll-behavior: smooth;
}