:root {
  color-scheme: light;
  --cream: #f8f1e7;
  --butter: #f6d7a7;
  --rose: #f3b3b1;
  --cocoa: #3b2721;
  --espresso: #1c0f0b;
  --cloud: #ffffff;
  --mint: #b9f0d5;
  --gradient: linear-gradient(135deg, #f7c59f 0%, #f2a7b8 45%, #b7a6ff 100%);
  --shadow: 0 25px 60px rgba(32, 18, 12, 0.2);
}

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

body {
  font-family: "Work Sans", sans-serif;
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero {
  position: relative;
  padding: 3.5rem 8vw 7rem;
  background: var(--gradient);
  color: var(--espresso);
  overflow: hidden;
}

.hero-animated {
  background-size: 180% 180%;
  animation: gradientShift 18s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  top: -120px;
  right: -120px;
  filter: blur(8px);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  bottom: -160px;
  left: -120px;
  filter: blur(12px);
  animation: drift 16s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, -20px);
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.button {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--espresso);
  color: var(--cloud);
  box-shadow: var(--shadow);
}

.button.ghost {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
}

.note {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  align-self: center;
}

.float {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--cloud);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 1rem;
}

.hero-stats span {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.section {
  padding: 5rem 8vw;
  position: relative;
  z-index: 1;
}

.section-title h2,
.story-content h2,
.visit-content h2,
.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--cloud);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(38, 24, 16, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(38, 24, 16, 0.2);
}

.product-card .icon {
  font-size: 2.4rem;
}

.pill {
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--butter);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story {
  background: #fff7ef;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: var(--cloud);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(38, 24, 16, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(38, 24, 16, 0.18);
}

.visit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  background: var(--espresso);
  color: var(--cloud);
}

.visit-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.pulse {
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  }
}

.visit-panel ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.contact {
  background: #fdf5f2;
}

.contact-card {
  background: var(--cloud);
  border-radius: 30px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(38, 24, 16, 0.15);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .hero-animated,
  .float,
  .pulse {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.9rem;
}

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

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 6vw 5rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .section {
    padding: 4rem 6vw;
  }

  .contact-card {
    padding: 2rem;
  }
}
