:root {
  --bg: #f5f7ed;
  --surface: rgba(255, 255, 255, 0.86);
  --text: #202420;
  --muted: #4a544a;
  --accent: #e36b2c;
  --accent-dark: #be4f15;
  --line: rgba(32, 36, 32, 0.12);
  --shadow: 0 16px 40px rgba(37, 43, 37, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #fbe7cf, #f5f7ed 55%),
              radial-gradient(circle at 95% 5%, #d9f4e6, transparent 45%);
  line-height: 1.5;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: #ffd3b8;
  top: 8%;
  left: -70px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #bbefdd;
  right: -100px;
  bottom: 8%;
}

.site-header {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.25rem auto;
  padding: 0.9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.site-header.compact {
  margin-bottom: 0;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.03em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
}

nav a.active,
nav a:hover {
  color: var(--text);
  background: rgba(227, 107, 44, 0.16);
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  margin-top: 2rem;
  padding: 2.2rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  color: var(--accent-dark);
}

h1, h2, h3 {
  font-family: "Literata", Georgia, serif;
}

.hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.15;
}

.hero-copy,
.page-intro {
  max-width: 70ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 11px;
  padding: 0.62rem 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
  background: white;
}

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

.card,
.product-card,
.info-panel,
.disclosure {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 1.1rem;
}

.card h2,
.product-card h2,
.info-panel h2 {
  margin-top: 0;
}

.card-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.page-content {
  padding-top: 2rem;
}

.page-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
}

.product-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
}

.info-panel {
  margin-top: 0.9rem;
}

.info-panel ul {
  padding-left: 1rem;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem;
  font: inherit;
  background: white;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.disclosure {
  margin-top: 1.2rem;
}

.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.5rem auto 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
