:root {
  --cream: #fbecd2;
  --cream-light: #fdf6e8;
  --terracotta: #cf8a52;
  --terracotta-dark: #b96f3a;
  --brown: #3d2a1b;
  --brown-soft: #5a4432;
  --green: #5b7b4b;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(61, 42, 27, 0.12);
  --radius: 16px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--brown);
  background: var(--cream-light);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-light);
  border-bottom: 1px solid rgba(61, 42, 27, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-nav {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brown-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta-dark);
  border-bottom-color: var(--terracotta);
}

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream-light);
    padding: 16px 24px 24px;
    gap: 14px;
    display: none;
    border-bottom: 1px solid rgba(61, 42, 27, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-light) 45%, var(--terracotta) 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--terracotta-dark);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--brown-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}

@media (max-width: 860px) {
  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-art {
  display: flex;
  justify-content: center;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 320px;
  text-align: center;
  border: 1px solid rgba(61, 42, 27, 0.08);
}

.brand-logo-lg {
  width: 200px;
  margin: 0 auto 10px;
}

.brand-logo-md {
  width: 170px;
  margin: 0 auto 16px;
}

.brand-logo-footer {
  height: 64px;
  width: auto;
  margin-bottom: 10px;
}

.stockist-logo {
  width: 90px;
  margin: 0 auto 16px;
}

.product-card .tagline {
  font-size: 0.85rem;
  color: var(--brown-soft);
  margin-top: 2px;
}

.badge-5kg {
  display: inline-block;
  margin-top: 14px;
  background: var(--terracotta-dark);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--terracotta-dark);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(185, 111, 58, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--terracotta-dark);
  border: 2px solid var(--terracotta-dark);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .btn-row {
    justify-content: center;
  }
}

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

.section-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--terracotta-dark);
  margin: 0 0 12px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--brown-soft);
  max-width: 60ch;
  margin: 0 auto 48px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.price-card.featured {
  border-color: var(--terracotta);
  position: relative;
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
}

.price-card .weight {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terracotta-dark);
}

.price-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 10px 0;
}

.price-card .price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-soft);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  text-align: left;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

.price-card ul li {
  padding: 6px 0;
  border-top: 1px solid rgba(61, 42, 27, 0.08);
}

.price-card ul li:first-child {
  border-top: none;
}

/* Cards / content blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: var(--serif);
  color: var(--terracotta-dark);
  margin-top: 0;
}

.badge-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  width: fit-content;
  margin: 0 auto;
}

.cta-band {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 32px;
}

.cta-band h2 {
  font-family: var(--serif);
  margin-top: 0;
  font-size: 2rem;
}

.cta-band .btn-primary {
  background: var(--brown);
}

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(61, 42, 27, 0.2);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream-light);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row-double {
    grid-template-columns: 1fr;
  }
}

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

.turnstile-widget {
  min-height: 65px;
}

.form-status {
  margin-top: 16px;
  font-weight: 600;
  min-height: 1.4em;
}

.form-status.ok {
  color: var(--green);
}

.form-status.err {
  color: #b3372c;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}

.contact-list .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--cream);
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 0.85rem;
  opacity: 0.75;
  text-align: center;
}

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

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}
