@import url('https://fonts.googleapis.com/css2?family=Abigail&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --gold: #d9a62c;
  --gold-deep: #b9860f;
  --green: #4d7a34;
  --green-deep: #37542a;
  --brown: #93602f;
  --black: #221c14;
  --white: #ffffff;
  --cream: #fbf7ee;
  --sage: #eef0e2;
  --line: #e4dcc9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Abigail', 'Playfair Display', serif;
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { line-height: 1.7; }

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

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 22px 0 14px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.logo img {
  height: 100px;
  width: auto;
  margin: 0 auto 20px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

nav a:hover, nav a.active {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 24px;
  right: 20px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--black);
}

.menu-toggle svg line {
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open svg line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open svg line:nth-child(2) { opacity: 0; }
.menu-toggle.open svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 780px) {
  header .container { position: relative; }

  .menu-toggle { display: block; }

  nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  nav.open { max-height: 320px; }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 0 6px;
  }

  nav a { padding: 8px 0; display: inline-block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,26,14,0.28), rgba(20,32,16,0.58));
}

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

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 640px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.page-hero {
  min-height: 38vh;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Sections */
section.block {
  padding: 72px 0;
}

section.block.alt {
  background: var(--sage);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.split.reverse .media { order: 2; }

section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.02em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 30px;
  background: var(--green-deep);
  border: 1px solid var(--green-deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--white);
  color: var(--green-deep);
}

.btn.btn-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
}

.center { text-align: center; }
.narrow { max-width: 720px; margin: 0 auto; }

/* Awards / lists */
.award-list, .stockist-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.award-list li, .stockist-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

/* Award badge row (visual, replaces the plain award-list) */
.award-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.award-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 8px;
  text-align: center;
}

@media (max-width: 600px) {
  .award-badges { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}

.award-badge .ribbon {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.award-badge b {
  display: block;
  font-family: 'Abigail', serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.award-badge span {
  font-size: 12.5px;
  color: #6b6350;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.guarantee-grid .card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
}

.guarantee-grid .card .mark {
  color: var(--green-deep);
  font-size: 28px;
  margin-bottom: 10px;
}

.stockist-card {
  border: 1px solid var(--line);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.stockist-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stockist-card p { margin: 2px 0; color: #444; }

/* Contact */
.contact-block {
  text-align: center;
}

.contact-block .field {
  margin: 18px 0;
  font-size: 1.05rem;
}

.contact-block .field span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 4px;
}

/* Footer */
footer {
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

footer .social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 14px 0;
}

footer .social a {
  font-size: 14px;
  letter-spacing: 0.05em;
}

footer .fine-print {
  font-size: 12px;
  color: #5c5648;
  margin-top: 18px;
}

/* Hero v2 — two column, warm background, real pack shot */
.hero-v2 {
  background: linear-gradient(180deg, var(--sage), var(--cream) 60%);
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-v2 .split {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-v2 h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  color: var(--black);
}

.hero-v2 p.lede {
  font-size: 1.05rem;
  color: #4a4336;
  max-width: 480px;
}

.hero-v2 .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-v2 .cta-row .btn { margin-top: 8px; }

.hero-v2 .btn.btn-ghost {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.hero-v2 .btn.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

.hero-v2 .pack-shot {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-v2 .pack-shot img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(50, 40, 10, 0.22));
}

/* Trust badge row */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-deep);
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
  flex: none;
}

/* Proof strip */
.proof-strip {
  background: var(--green-deep);
  color: var(--white);
  padding: 34px 0;
}

.proof-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.proof-strip .stat b {
  display: block;
  font-family: 'Abigail', serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.proof-strip .stat span {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* CTA band */
.cta-band {
  background: var(--green-deep);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); }

/* Forms (General Enquiry / Wholesale) */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 32px;
}

.wf-field {
  display: block;
  margin-bottom: 18px;
  text-align: left;
}

.wf-field > span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 6px;
}

.wf-field input, .wf-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
  background: var(--cream);
}

.wf-field input:focus, .wf-field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.wf-error {
  color: #b23b2c;
  font-size: 12.5px;
  margin: 6px 0 0;
  min-height: 1em;
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 780px) {
  .form-grid-two { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .hero-v2 .split { grid-template-columns: 1fr; }
  .hero-v2 .pack-shot { order: -1; }
  .proof-strip .container { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 780px) {
  .split, .split.reverse {
    grid-template-columns: 1fr;
  }
  .split.reverse .media { order: 0; }
  .guarantee-grid { grid-template-columns: 1fr; }
  nav ul { gap: 18px 24px; }
}
