@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --bg: #fff6ea;
  --ink: #1c1a16;
  --muted: #5b544a;
  --accent: #f27a27;
  --accent-dark: #c55a14;
  --sage: #d5dfc2;
  --sand: #f4eadc;
  --night: #222019;
  --card: #fffdf8;
  --shadow: 0 20px 60px rgba(25, 20, 15, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fffdf7, var(--bg));
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.25;
  z-index: -1;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #ffd39c, transparent 70%);
  top: -120px;
  right: -100px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #ffd0c1, transparent 70%);
  bottom: -120px;
  left: -80px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 246, 234, 0.7);
  z-index: 10;
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(242, 122, 39, 0.2);
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ghost-btn,
.cart-btn,
.primary-btn,
.link-btn,
.outline-btn,
.tiny-btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.ghost-btn {
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
}

.cart-btn {
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cart-count {
  background: #fff;
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.burger {
  display: none;
  border: none;
  background: transparent;
  padding: 8px;
  gap: 6px;
  flex-direction: column;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 14px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0 28px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(242, 122, 39, 0.35);
  transition: transform 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.link-btn {
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-image {
  background: linear-gradient(145deg, #ffd8a8, #fff5e5);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: inline-block;
  margin-bottom: 20px;
}

.hero-art {
  position: relative;
  height: 220px;
}

.art-plate,
.art-cup,
.art-slice {
  position: absolute;
  border-radius: 50%;
}

.art-plate {
  width: 180px;
  height: 180px;
  background: #fff;
  border: 6px solid rgba(255, 255, 255, 0.6);
  bottom: 0;
  right: 0;
}

.art-cup {
  width: 100px;
  height: 100px;
  background: #ffd6c2;
  top: 30px;
  left: 10px;
}

.art-slice {
  width: 140px;
  height: 140px;
  background: #f8b86d;
  top: 60px;
  right: 80px;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-weight: 600;
}

.tiny-btn {
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.category-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 26, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.collections {
  padding: 70px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.collection-card {
  background: linear-gradient(160deg, #fff7ed, #ffe5cf);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.collection-card.dark {
  background: linear-gradient(160deg, #3b372d, #1c1a16);
  color: #fff;
}

.tag {
  background: rgba(0, 0, 0, 0.08);
  padding: 4px 10px;
  display: inline-flex;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.collection-card.dark .tag {
  background: rgba(255, 255, 255, 0.15);
}

.outline-btn {
  border: 1px solid currentColor;
  background: transparent;
  padding: 10px 16px;
  border-radius: 999px;
  align-self: flex-start;
}

.products {
  padding-bottom: 70px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 26, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-label {
  background: var(--sage);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.icon-btn {
  border: none;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-weight: 600;
}

.story {
  background: var(--sand);
  padding: 70px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.story h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--accent);
}

.story-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin: 0 0 16px;
}

.quote-author {
  color: var(--muted);
  margin: 0;
}

.delivery {
  padding: 70px 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.delivery-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 26, 22, 0.08);
}

.newsletter {
  padding: 60px 0 80px;
}

.newsletter-inner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
}

.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid rgba(28, 26, 22, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.footer-grid h4 {
  margin-top: 0;
}

.footer-grid a {
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 20px;
}

.muted {
  color: var(--muted);
}

.catalog,
.products {
  padding: 40px 0;
}

@media (max-width: 900px) {
  .nav,
  .header-actions {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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