:root {
  --sage: #7d8a63;
  --sage-dark: #5f6b49;
  --sage-light: #9caa80;
  --cream: #f6f4ec;
  --cream-deep: #ece7d8;
  --ink: #3f4536;
  --muted: #7a7d6e;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(circle at 50% 0%, var(--cream) 0%, var(--cream-deep) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem 1.5rem;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.blob--one {
  width: 420px;
  height: 420px;
  background: var(--sage-light);
  top: -120px;
  right: -120px;
}

.blob--two {
  width: 380px;
  height: 380px;
  background: var(--sage);
  bottom: -140px;
  left: -120px;
}

/* Content */
.content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(95, 107, 73, 0.25));
  animation: float 6s ease-in-out infinite;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sage-dark);
  padding: 0.4rem 0;
  position: relative;
}

.intro {
  margin-top: 2.4rem;
}

.title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  line-height: 1;
  color: var(--sage-dark);
  letter-spacing: 0.01em;
}

.subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.2rem, 3.4vw, 1.7rem);
  color: var(--sage);
  margin-top: 0.6rem;
}

.tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  color: var(--muted);
  margin-top: 1.1rem;
  max-width: 30ch;
  margin-inline: auto;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: var(--sage-dark);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(95, 107, 73, 0.28);
}

.btn:hover {
  background: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(95, 107, 73, 0.34);
}

.btn__icon {
  font-size: 1rem;
}

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--sage-dark);
  color: var(--cream);
  border-color: var(--sage-dark);
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--sage-light);
  font-size: 0.9rem;
  width: 100%;
  max-width: 300px;
}

.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-light), transparent);
}

/* Shop */
.shop {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--sage-dark);
  letter-spacing: 0.02em;
}

.shop-name span {
  color: var(--sage-light);
}

.shop-copy {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  color: var(--muted);
  margin-top: 0.7rem;
  max-width: 32ch;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 2.5rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
}

.site-footer .powered a {
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--sage-light);
  transition: color 0.3s ease;
}

.site-footer .powered a:hover {
  color: var(--sage);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .logo { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 480px) {
  .page { padding: 1.5rem 1.25rem; }
  .logo { width: 110px; }
  .divider { margin: 2.2rem 0; }
}
