:root {
  --ink: #1c1a17;
  --ink-soft: #3a342e;
  --sand: #f6f1eb;
  --peach: #f4d9cc;
  --moss: #3b5e4a;
  --clay: #b7755e;
  --cream: #fffaf5;
  --accent: #2f6f6b;
  --shadow: 0 18px 40px rgba(28, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Helvetica, Arial, Verdana, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 500;
  background: radial-gradient(circle at top, #fff, var(--sand)) fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(183, 117, 94, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: -1;
}

.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
  display: none;
}

.bird {
  position: absolute;
  width: 80px;
  opacity: 0.35;
  filter: drop-shadow(0 6px 12px rgba(28, 26, 23, 0.18));
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bird img {
  width: 100%;
  display: block;
  transform-origin: 60% 60%;
  animation: flap 0.8s ease-in-out infinite;
}

.bird-one {
  top: 12%;
  left: -15%;
  animation-name: fly-a;
  animation-duration: 9s;
  animation-delay: 1s;
}

.bird-two {
  top: 28%;
  left: -20%;
  width: 52px;
  opacity: 0.25;
  animation-name: fly-b;
  animation-duration: 12s;
  animation-delay: 4s;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand img {
  height: 112px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

nav a {
  position: relative;
  padding-bottom: 4px;
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 90px;
}

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

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

.hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  animation: floatIn 1.2s ease both;
}

.hero-card img {
  border-radius: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--ink);
  color: var(--cream);
}

.button.link {
  background: var(--accent);
  color: var(--cream);
  border-color: transparent;
  font-size: 0.9rem;
  margin-top: 15px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 26, 23, 0.15);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.marquee {
  width: 100vw;
  margin: 0 0 18px;
  margin-left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 26, 23, 0.08);
  border-radius: 0;
  overflow: hidden;
  padding: 10px 0;
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-size: 1.05rem;
  animation: scroll 36s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

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

.card {
  background: var(--cream);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin: 16px 0 6px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.ribbon {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(47, 111, 107, 0.12);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq ul,
.faq ol {
  margin: 10px 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq li {
  margin-bottom: 8px;
}

.stockist-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.stockist-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.stockist-tile {
  background: var(--cream);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: center;
}

.tile-media,
.tile-map {
  border-radius: 18px;
  overflow: hidden;
  background: #f2ebe4;
  min-height: 220px;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.tile-content h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

footer {
  padding: 40px 20px 70px;
  text-align: center;
  color: rgba(28, 26, 23, 0.6);
  font-size: 0.95rem;
}

@keyframes floatIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fly-a {
  0% {
    transform: translate(0, 0) scale(0.9);
    opacity: 0;
  }
  8% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translate(130vw, -6vh) scale(1.05);
    opacity: 0;
  }
}

@keyframes fly-b {
  0% {
    transform: translate(0, 0) scale(0.85);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    transform: translate(65vw, 4vh) scale(0.95);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translate(135vw, -3vh) scale(1.05);
    opacity: 0;
  }
}

@keyframes flap {
  0% {
    transform: rotate(0deg) scaleY(1);
  }
  50% {
    transform: rotate(-6deg) scaleY(0.9);
  }
  100% {
    transform: rotate(0deg) scaleY(1);
  }
}

@media (max-width: 720px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

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