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

html { font-size: 16px; scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

/* ===== HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1120px;
  margin: 0 auto;
  transition: opacity 0.4s;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.site-header__logo img {
  width: 32px;
  height: 32px;
}

.site-header__logo span {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(192,160,98,0.25);
  padding: 6px 12px;
  transition: color 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 32px 64px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 35%, rgba(192,160,98,0.07), transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(212,185,122,0.025), transparent 60%);
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.hero__rule {
  width: 72px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero__subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.hero__scroll-text {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  width: 16px;
  height: 16px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== PRODUCTS SECTION ===== */

.products {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px 120px;
}

.products__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 48px;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  border: 1px solid rgba(192,160,98,0.15);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  border-color: rgba(192,160,98,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.product-card__visual {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.85;
}

.product-card__visual svg {
  width: 100%;
  height: 100%;
}

.product-card__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-card__title {
  font-family: 'EB Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 28px;
  flex: 1;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0f0c07;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.product-card__cta:hover {
  background: var(--accent-warm);
  color: #0f0c07;
}

.product-card__cta svg {
  width: 14px;
  height: 14px;
}

.product-card__meta {
  font-size: 0.75rem;
  color: var(--text2);
  margin-top: 16px;
  opacity: 0.7;
}

/* ===== MISSION SECTION ===== */

.mission {
  max-width: 680px;
  margin: 0 auto;
  padding: 96px 24px 120px;
  border-top: 1px solid rgba(192,160,98,0.1);
}

.mission__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mission__lead {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.8;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.beliefs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.belief {
  padding-left: 20px;
  border-left: 2px solid rgba(192,160,98,0.3);
}

.belief__title {
  font-family: 'EB Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.belief__text {
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== FOOTER ===== */

.site-footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(192,160,98,0.1);
}

.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.site-footer__links a {
  font-size: 0.8125rem;
  color: var(--text2);
}

.site-footer__links a:hover { color: var(--accent); }

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--text2);
  opacity: 0.6;
}

/* ===== ANIMATIONS ===== */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__eyebrow,
  .hero__title,
  .hero__rule,
  .hero__subtitle,
  .hero__scroll {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ===== RESPONSIVE ===== */

@media (min-width: 700px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .product-card {
    padding: 56px 40px;
  }
}

@media (min-width: 900px) {
  .hero__title {
    letter-spacing: -3px;
  }

  .hero__rule {
    width: 88px;
    height: 3px;
    margin-bottom: 32px;
  }

  .hero__subtitle {
    font-size: 1.125rem;
    max-width: 460px;
  }

  .products {
    padding: 120px 48px 140px;
  }

  .products__grid {
    gap: 32px;
  }

  .product-card {
    padding: 64px 48px;
  }

  .product-card__visual {
    width: 140px;
    height: 140px;
    margin-bottom: 36px;
  }

  .product-card__title {
    font-size: 2rem;
  }

  .mission {
    padding: 120px 48px 140px;
  }

  .mission__title {
    margin-bottom: 48px;
  }

  .beliefs {
    gap: 32px;
  }

  .belief {
    padding-left: 28px;
  }
}

@media (min-width: 1200px) {
  .products {
    padding: 140px 64px 160px;
  }

  .mission {
    padding: 140px 64px 160px;
  }
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(192,160,98,0.2); }

/* ===== FOCUS STATES ===== */

:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-card__cta:focus-visible {
  outline-offset: 4px;
}
