:root {
  --accent-dark: #7a3b28;
  --accent: #b5563c;
  --accent-light: #e7a98d;
  --cream: #fbf3ec;
  --cream-card: #ffffff;
  --text: #3d2b22;
  --text-soft: #7a5c4d;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(122, 59, 40, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.logo {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--accent-dark);
}

h1, h2, h3 { color: var(--accent-dark); margin-top: 0; }
h2 { font-size: 1.9rem; text-align: center; margin-bottom: 1.5rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 720px; }

.section { padding: 4rem 0; }
.section.alt { background: #f5e3d7; }

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-top: -1rem;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Header / Hero */
.hero {
  background: linear-gradient(180deg, #f5e3d7 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
  z-index: 20;
}

.nav .logo { font-size: 1.6rem; }

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-dark);
}

.hero-content {
  text-align: center;
  padding: 3rem 1.5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-logo { font-size: 3.5rem; margin-bottom: 0.5rem; }

.tagline {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  margin: 0.5rem 0 2rem;
}

.leaf-decor {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(231,169,141,0.35), transparent 70%);
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

/* Bio */
.bio-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.bio-more[hidden] { display: none; }

.bio-toggle {
  display: inline-block;
  margin-top: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}
.bio-toggle:hover { text-decoration: underline; }

/* Offering cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--cream-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  text-align: center;
}

.card-icon { width: 64px; margin: 0 auto 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; }
.card-link { font-weight: 700; }

/* Shop CTA */
.shop-cta { text-align: center; }
.shop-cta .small { margin-top: 1rem; }

/* Gallery carousel */
.carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-card);
  touch-action: pan-y;
}
.carousel[hidden] { display: none; }

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { background: rgba(0, 0, 0, 0.6); }
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.carousel-arrow[hidden] { display: none; }

.carousel-pause {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-pause:hover { background: rgba(0, 0, 0, 0.6); }
.carousel-pause[hidden] { display: none; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.carousel-dots[hidden] { display: none; }

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.carousel-dot.active { background: #fff; }

/* Form */
.enquiry-form {
  background: var(--cream-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field[hidden] { display: none; }
.field label { font-weight: 600; color: var(--accent-dark); }

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e3d3c8;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent-light);
}

.radio-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.radio-row label { font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-status { min-height: 1.2rem; font-weight: 600; }
.form-status.success { color: var(--accent-dark); }
.form-status.error { color: #a13d3d; }

/* Follow */
.follow-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.follow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-card);
  box-shadow: var(--shadow);
}
.follow-link:hover { text-decoration: none; background: var(--accent); }

.follow-icon {
  display: inline-flex;
  color: var(--accent-dark);
  width: 22px;
  height: 22px;
}
.follow-icon svg { width: 100%; height: 100%; display: block; }
.follow-link:hover .follow-icon { color: #fff; }

.fb-feed-wrap {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-card);
}

.fb-feed-wrap iframe {
  display: block;
  width: 100%;
  height: 700px;
}

/* Footer */
.footer {
  background: var(--accent-dark);
  color: #f5e3d7;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.footer .logo { color: #fff; font-size: 1.8rem; }
.footer a { color: #fff; }
.small { font-size: 0.85rem; color: var(--text-soft); }
.footer .small { color: #d9c2b3; margin-top: 0.5rem; }

/* Responsive */
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-logo { font-size: 2.6rem; }
}
