/* ============================================================
   Settlers Wildflowers — Modernised Design System
   Aesthetic: Organic botanical, editorial, warm naturalistic
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --cream:       #f7f3ed;
  --parchment:   #ede8df;
  --sand:        #d4c9b5;
  --clay:        #b5956a;
  --earth:       #7a5c3a;
  --bark:        #3d2b1a;
  --sage:        #7a8c6a;
  --sage-light:  #a8b89a;
  --moss:        #4a5e3a;
  --white:       #ffffff;
  --text:        #2e2016;
  --text-mid:    #5a4530;
  --text-light:  #8a7660;
  --accent:      #c4863c;
  --accent-dark: #9a5f1e;

  --header-h: 80px;
  --max-w: 1200px;
  --radius: 2px;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(61, 43, 26, 0.10);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sand);
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--accent);
  transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out);
}
.primary-nav a:hover, .primary-nav a.active {
  color: var(--bark);
}
.primary-nav a:hover::after, .primary-nav a.active::after {
  left: 0.85rem; right: 0.85rem;
}
.primary-nav a.nav-cta {
  background: var(--bark);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  border-radius: 0;
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover {
  background: var(--earth);
  color: var(--cream);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── PAGE WRAPPER ── */
main { padding-top: var(--header-h); }

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 43, 26, 0.35) 0%,
    rgba(61, 43, 26, 0.15) 40%,
    rgba(61, 43, 26, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s 0.35s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; }
.hero-subtitle {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.65s var(--ease-out) forwards;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-dark {
  background: var(--bark);
  color: var(--cream);
}
.btn-dark:hover { background: var(--earth); transform: translateY(-2px); }

/* ── HERO SCROLL HINT ── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1s var(--ease-out) forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDrop 1.8s 1.5s infinite;
}

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bark);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }
.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ── HOME: INTRO STRIP ── */
.intro-strip {
  background: var(--bark);
  color: var(--cream);
  text-align: center;
  padding: 4rem 2rem;
}
.intro-strip p {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 750px;
  margin: 0 auto 1rem;
}
.intro-strip .quote-attr {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── HOME: FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand);
}
.feature-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.25s;
}
.feature-card:hover { background: var(--parchment); }
.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── HOME: ABOUT TEASER ── */
.about-teaser {
  background: var(--parchment);
}
.about-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser-img {
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.9);
}
.about-teaser-text { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── HOME: CTA ── */
.home-cta {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.home-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.home-cta p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.home-cta .btn-outline {
  border-color: rgba(255,255,255,0.5);
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--bark);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
}
.page-hero .page-hero-sub {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.75rem;
}

/* ── ABOUT PAGE ── */
.about-body {
  max-width: 720px;
  margin: 0 auto;
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.about-body p:first-child {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bark);
  line-height: 1.5;
}
.about-values {
  background: var(--parchment);
  padding: 4rem 2rem;
  margin-top: 3rem;
}
.about-values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.value-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--earth);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── PRODUCTS PAGE ── */
.products-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3rem;
}
.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-category {
  background: var(--parchment);
  border: 1px solid var(--sand);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.product-category:hover {
  border-color: var(--clay);
  box-shadow: 0 8px 40px rgba(61, 43, 26, 0.08);
}
.product-category-icon {
  width: 56px; height: 56px;
  color: var(--sage);
}
.product-category h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bark);
}
.product-category p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}
.product-note {
  background: var(--bark);
  color: var(--cream);
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
}
.product-note p {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ── STOCKISTS PAGE ── */
.stockists-intro { max-width: 640px; margin-bottom: 3rem; }
.state-group { margin-bottom: 3rem; }
.state-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--earth);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.region-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.stockist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.stockist-card {
  background: var(--parchment);
  border: 1px solid var(--sand);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.stockist-name {
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.25rem;
}
.stockist-address { color: var(--text-light); }

/* ── FAQS ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.75rem 0;
}
.faq-q {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.faq-toggle {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  display: none;
  padding-top: 0.25rem;
}
.faq-item.open .faq-a { display: block; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 1.5rem;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-detail-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail a { color: var(--earth); }
.contact-detail a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--parchment);
  border: 1px solid var(--sand);
  padding: 0.75rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--earth); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bark);
  color: var(--cream);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--sand);
  text-transform: uppercase;
}
.site-footer h4 {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(247,243,237,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(247,243,237,0.7);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.footer-contact a { color: var(--sage-light); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-location {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--sand);
  letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(247,243,237,0.4);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 1px; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-teaser-img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 1rem; gap: 0.75rem; }
  .logo-img { width: 36px; height: 36px; }
  .logo-name { font-size: 1rem; }
  .logo-tagline { display: none; }
  .primary-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--sand);
    padding: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), visibility 0s 0.35s;
    box-shadow: 0 8px 40px rgba(61,43,26,0.12);
  }
  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), visibility 0s 0s;
  }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a {
    display: block;
    padding: 0.85rem 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--parchment);
  }
  .primary-nav a.nav-cta { margin-top: 0.75rem; text-align: center; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 3.5rem 1.25rem; }
}
