/* ───── Brand tokens ───── */
:root {
  /* Brand palette */
  --rustic-rose: #c94b4b;
  --silkie-blue: #7ca6ad;
  --soft-eggshell: #faf9f6;
  --charcoal-black: #1d1d1b;
  --wheat-amber: #d8a656;
  --smoky-feather: #777671;

  /* Semantic tokens */
  --color-primary: var(--rustic-rose);
  --color-secondary: var(--silkie-blue);
  --color-bg: var(--soft-eggshell);
  --color-text: var(--charcoal-black);
  --color-accent: var(--wheat-amber);
  --color-muted: var(--smoky-feather);

  --radius: 10px;
  --shadow: 0 6px 12px hsl(0 0% 0%/0.08);
  --transition: 0.25s ease;
  --font: "Raleway", system-ui, sans-serif;
}
/* ───── Reset & base ───── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.5px;
}
h1 {
  font-size: clamp(2.2rem, 4vw+1rem, 4rem);
}
h2 {
  font-size: clamp(1.6rem, 2.5vw+1rem, 2.6rem);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
p,
li {
  font-size: 1rem;
}
em {
  font-style: italic;
  color: var(--color-primary);
}
a {
  color: inherit;
  text-decoration-thickness: 2px;
}

.container {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
}

/* ───── Hero ───── */
.hero {
  padding: 5rem 1rem 6rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(216, 166, 86, 0.12) 0%, rgba(250, 249, 246, 0.7) 50%),
    url('../assets/hero-background.png') top center no-repeat fixed;
  background-size: 100vw auto;
  position: relative;
  overflow: hidden;
}
.hero__logo {
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}
.hero__title {
  margin: 0.8rem 0;
  color: var(--color-text);
}
.hero__title span {
  color: var(--color-primary);
}
.hero__tagline {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--color-muted);
}

/* ───── Buttons ───── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.btn--primary {
  background: var(--color-secondary);
  color: #fff;
}
.btn--secondary {
  background: var(--color-primary);
  color: #fff;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px hsl(0 0% 0%/0.1);
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px hsl(0 0% 0%/0.25);
  }
}

/* ───── Sections ───── */
section {
  padding: 4rem 1rem;
}
.about {
  background: var(--color-accent);
}
.product {
  background: var(--color-bg);
}
.cta {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}
.contact {
  background: var(--color-accent);
}

/* ───── Grid for product specs ───── */
.grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 700px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ───── Lists ───── */
.list {
  list-style: none;
  margin-top: 0.5rem;
}
.list li {
  margin: 0.25rem 0;
  padding-left: 1.1em;
  position: relative;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ───── Footer ───── */
.footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* ───── Scroll‑reveal ───── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ───── Utility ───── */
.small {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/*  LANGUAGE TOGGLE  */
.lang-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--color-muted);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1000;
}
.lang-toggle:hover {
  background: var(--color-primary);
  box-shadow: var(--shadow);
}

/*  ORDER FORM  */
form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
}
form input,
form select {
  margin-top: 0.4rem;
  padding: 0.7rem;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius);
  font-size: 1rem;
}
