/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:    #faf6f0;
  --warm-off: #f2ebe0;
  --tan:      #d4b896;
  --brown:    #8b6347;
  --dark:     #2c1f14;
  --text:     #4a3728;
  --muted:    #7a6456;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

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

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Page wrapper ===== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
.header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(139, 99, 71, 0.15);
}

.logo-wrap {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(139, 99, 71, 0.25);
  flex-shrink: 0;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== Hero ===== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, var(--cream) 60%, var(--warm-off) 100%);
}

.hero-content {
  max-width: 640px;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CTA Button ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--dark);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 3px;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
  background-color: var(--brown);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.instagram-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.cta-hint {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ===== Pickup info ===== */
.pickup-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 99, 71, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.pickup-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
}

.pickup-location {
  font-size: 0.9375rem;
  color: var(--text);
}

.pickup-shipping {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== Values section ===== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(139, 99, 71, 0.15);
  background-color: var(--warm-off);
}

.value-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(139, 99, 71, 0.12);
}

.value-card:last-child {
  border-right: none;
}

.value-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.875rem;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.value-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== Footer ===== */
.footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(139, 99, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }

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

  .value-card {
    border-right: none;
    border-bottom: 1px solid rgba(139, 99, 71, 0.12);
  }

  .value-card:last-child {
    border-bottom: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
