:root {
  --bg: #fff7ea;
  --bg-alt: #fff2d8;
  --text: #2a2320;
  --muted: #6c5f56;
  --accent: #ff8b2c;
  --accent-dark: #d85a00;
  --leaf: #2c8f6e;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(42, 35, 32, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #ffe7b6 0%, #fff7ea 38%, #fef2db 100%);
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "DM Sans", serif;
  letter-spacing: -0.02em;
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 234, 0.88);
  border-bottom: 1px solid rgba(42, 35, 32, 0.08);
}

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

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(42, 35, 32, 0.15);
  background: white;
}

.name {
  font-weight: 700;
}

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

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
}

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

.menu .cta {
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 6vw 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: url("backdrop.jpg");
  background-size: 360px;
  background-size: cover;
  opacity: 0.23;
  transform: rotate(-6deg);
  filter: saturate(0.6);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  z-index: 0;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffe3b6;
  color: #7a4d1b;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin: 16px 0;
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 139, 44, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.ghost {
  border-color: rgba(42, 35, 32, 0.2);
  color: var(--text);
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(42, 35, 32, 0.18);
}

.hero-card {
  background: var(--card);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 35, 32, 0.08);
  position: relative;
}


.packet {
  border-radius: 26px;
  padding: 28px;
  background: linear-gradient(160deg, #2c8f6e, #3fb08d);
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.packet-top {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.packet-flavor {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 8px 0;
}

.packet-note {
  font-size: 0.95rem;
  opacity: 0.8;
}

.packet-circle {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  right: -40px;
  bottom: -60px;
}

.mini-grid {
  display: grid;
  gap: 16px;
}

.mini {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-alt);
}

.mini-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.section {
  padding: 70px 6vw;
}

.section-title {
  margin-bottom: 28px;
}

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

.card {
  background: white;
  padding: 20px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 35, 32, 0.05);
}

.gallery {
  background: #fff6e6;
  border-top: 1px solid rgba(42, 35, 32, 0.06);
  border-bottom: 1px solid rgba(42, 35, 32, 0.06);
}

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

.gallery-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  padding: 20px;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f7f0e6;
  border: 1px solid rgba(42, 35, 32, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(8px) saturate(0.9);
  opacity: 0.25;
  z-index: 0;
}

.gallery-card img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
  z-index: 2;
}

.gallery-label {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.gallery-sub {
  margin-top: 6px;
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.gallery-badge {
  position: absolute;
  bottom: 18px;
  left: 22px;
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.2));
  z-index: 1;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(42, 35, 32, 0.2);
}

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

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.contact-meta {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-meta .social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.contact-meta a {
  color: inherit;
}

.contact-meta .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer {
  padding: 30px 6vw 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 860px) {
  .menu {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 520px) {

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}
