/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #fff6ee;
  --bg-alt: #ffffff;
  --primary: #f45d2f;
  --primary-soft: #ffe1d2;
  --accent: #ffc94b;
  --accent-soft: #fff1c4;
  --text: #231f20;
  --text-muted: #5b5552;
  --card-bg: #ffffff;
  --border-soft: #f4dfd2;
  --radius-lg: 1.7rem;
  --radius-md: 1.1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
  --transition: 0.25s ease;
  --max-width: 1120px;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--text);
  /* subtle page background gradient */
  background: radial-gradient(circle at top left, #ffe8cf 0, #fff6ee 45%, #fffdfa 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections & titles */

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, #f45d2f, #ff9445);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 55px rgba(244, 93, 47, 0.45);
}

.ghost-btn {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.ghost-btn:hover {
  background: var(--primary-soft);
}

/* Links */

.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.card-link::after,
.section-link::after {
  content: "➜";
  font-size: 0.85em;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 240, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 191, 145, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 46px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
}

/* animated pill underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f45d2f, #ffc94b);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* ===== FOOTER ===== */

.site-footer {
  background: radial-gradient(circle at top, #3e1e17 0, #241414 55%);
  color: #f7f2ec;
  padding-top: 3rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  color: #e1d2c7;
  max-width: 18rem;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #e1d2c7;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e1d2c7;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid #3c2621;
  text-align: center;
  padding: 0.8rem 1.25rem 1.2rem;
  font-size: 0.8rem;
  color: #c9b4a8;
}

/* Page main wrapper */

.page-main {
  min-height: 60vh;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  max-width: 32rem;
  color: var(--text-muted);
}

/* ===== GENERIC CARD HOVERS ===== */

.brand-card,
.info-card,
.recipe-card,
.story-card,
.press-item,
.sustain-card,
.legal-block,
.privacy-section {
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.brand-card:hover,
.info-card:hover,
.recipe-card:hover,
.story-card:hover,
.press-item:hover,
.sustain-card:hover,
.legal-block:hover,
.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  background-color: #fffdf8;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    right: 16px;
    background: var(--bg-alt);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1rem;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Back-to-top button ===== */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f45d2f, #ff9445);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 40;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Scroll fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* ====== FOOTER LAYOUT ====== */

.site-footer {
  background: #1c0d08;
  color: #f7f1ea;
  padding: 40px 0 26px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

/* brand column */
.footer-brand .brand-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 260px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* little “chips” under the text */
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* links column */
.footer-links h4,
.footer-social h4 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.3rem;
}

.footer-links a {
  color: #f7f1ea;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* social column */
.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-social-note {
  font-size: 0.8rem;
  opacity: 0.8;
  max-width: 200px;
}

/* bottom strip */
.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* responsive layout */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand p,
  .footer-social-note {
    max-width: none;
  }
}
/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #fff6ee;
  --bg-alt: #ffffff;
  --primary: #f45d2f;
  --primary-soft: #ffe1d2;
  --accent: #ffc94b;
  --accent-soft: #fff1c4;
  --text: #231f20;
  --text-muted: #5b5552;
  --card-bg: #ffffff;
  --border-soft: #f4dfd2;
  --radius-lg: 1.7rem;
  --radius-md: 1.1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
  --transition: 0.25s ease;
  --max-width: 1120px;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--text);
  /* subtle page background gradient */
  background: radial-gradient(circle at top left, #ffe8cf 0, #fff6ee 45%, #fffdfa 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections & titles */

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, #f45d2f, #ff9445);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 55px rgba(244, 93, 47, 0.45);
}

.ghost-btn {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.ghost-btn:hover {
  background: var(--primary-soft);
}

/* Links */

.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.card-link::after,
.section-link::after {
  content: "➜";
  font-size: 0.85em;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 240, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 191, 145, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 46px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
}

/* animated pill underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f45d2f, #ffc94b);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* ===== FOOTER ===== */

.site-footer {
  background: radial-gradient(circle at top, #3e1e17 0, #241414 55%);
  color: #f7f2ec;
  padding-top: 3rem;
  margin-top: 0rem;

}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  color: #e1d2c7;
  max-width: 18rem;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #e1d2c7;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e1d2c7;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid #3c2621;
  text-align: center;
  padding: 0.8rem 1.25rem 1.2rem;
  font-size: 0.8rem;
  color: #c9b4a8;
}

/* Page main wrapper */

.page-main {
  min-height: 60vh;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  max-width: 32rem;
  color: var(--text-muted);
}

/* ===== GENERIC CARD HOVERS ===== */

.brand-card,
.info-card,
.recipe-card,
.story-card,
.press-item,
.sustain-card,
.legal-block,
.privacy-section {
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.brand-card:hover,
.info-card:hover,
.recipe-card:hover,
.story-card:hover,
.press-item:hover,
.sustain-card:hover,
.legal-block:hover,
.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  background-color: #fffdf8;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    right: 16px;
    background: var(--bg-alt);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1rem;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.simple-slider {
  text-align: center;
  padding: 40px 0;

  background: linear-gradient(
    to bottom,
    #ffe8cf 0%,
    #fff6ee 40%,
    #f7c978 100%
  );

  border: none;
}


.slides {
  max-width: 1100px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.simple-slider img {
  max-width: unset !important;
  width: 477px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #0004;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.simple-slider {
  text-align: center;
  padding: 40px 0;
  background: radial-gradient(circle at 30% 20%, #fff4e8 0%, #ffe3c8 45%, #f7c978 100%);
}


.slides {
  max-width: 1526px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);;
  gap: 30px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.recipe-card {
  position: relative;
  border-radius: 25px;

}


/* TEXT ON IMAGE */
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fbc649;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* DOTS */
.dots {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background:#ff9445;
  color: white;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  z-index: 10;
}
/* ===========================
   MOBILE RESPONSIVE (max 768px)
   =========================== */
@media (max-width: 768px) {

    /* Reduce section padding */
    .simple-slider {
        padding: 25px 0;
    }

    /* Title size smaller */
    .simple-slider h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* --- Slides --- */
    .slides {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Stack cards vertically on mobile */
    .slide {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 10px;
    }

    /* Image size */
    .recipe-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Label on image */
    .label {
        font-size: 1.2rem;
        bottom: 18px;
        left: 18px;
        padding: 10px 20px;
        border-radius: 18px;
    }

    /* --- Dots --- */
    .dots {
        gap: 10px;
        margin-top: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}
/* MOBILE RESPONSIVE — Fibre Icons Become 1 per Row */
@media (max-width: 768px) {
    .fibre-icons {
        display: flex;
        flex-direction: column;     /* stack vertically */
        align-items: center;
        gap: 30px;                  /* spacing between items */
        margin-top: 20px;
    }

    .fibre-item {
        width: 90%;
        text-align: center;
    }

    .fibre-item img {
        width: 120px;               /* reduce image size */
        height: auto;
        margin-bottom: 10px;
    }

    .fibre-hero h1 {
        font-size: 28px;            /* smaller title */
        padding: 0 20px;
    }

    .fibre-hero button.explore-btn {
        width: 90%;
        font-size: 14px;
        padding: 12px;
    }
}
.our-story {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
    background:#FFFAEC;  /* soft background similar to Kellogg’s */
    overflow: hidden;
}

/* LEFT SUN GRAPHIC */
.sun-graphic {
    background-image: url("../img/sun.jpg"); /* your sun image */
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* RIGHT CONTENT */
.story-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: auto;
}

.story-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .our-story {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sun-graphic {
        height: 200px;
        background-position: center;
        opacity: 0.15; /* subtle background */
    }

    .story-content {
        padding: 40px 20px;
        margin: 0 auto;
    }

    .story-content h1 {
        font-size: 36px;
    }

    .story-content p {
        font-size: 18px;
    }
}
:root{
  --bg:#fff6ee;
  --panel:#fff;
  --accent:#f6b84f;
  --accent-2:#f45d2f;
  --text:#231f20;
  --muted:#6b6260;
  --radius:12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --max-width:920px;
  --gap:16px;
  font-synthesis: none;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:var(--text); background: radial-gradient(circle at top left,#ffe8cf 0,#fff6ee 45%,#fffdfa 100%);}

/* layout */
.page{min-height:100vh;display:flex;flex-direction:column;align-items:center;padding:36px 20px;}


/* form wrapper */

/* form */
.contact-form{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--gap)}
.row{display:flex;flex-direction:column;gap:8px}
.row label{font-weight:600;font-size:13px}
.row input, .row textarea{
  border:1px solid #efe6dd;
  background:var(--panel);
  padding:12px 14px;
  border-radius:10px;
  font-size:15px;
  outline:none;
  transition:box-shadow .15s, border-color .15s;
  resize:vertical;
}
.row input:focus, .row textarea:focus{box-shadow:0 6px 18px rgba(244,93,47,0.08);border-color:rgba(244,93,47,0.12)}

.row textarea{min-height:120px}

/* span error text */
.error{color:#b23b2b;font-size:13px;min-height:18px}

/* actions row spans full width */
.actions{grid-column:1/-1;display:flex;gap:12px;align-items:center}
.btn{background:linear-gradient(90deg,var(--accent-2),#ff9445);border:none;color:#fff;padding:10px 18px;border-radius:999px;cursor:pointer;font-weight:700;box-shadow:0 8px 25px rgba(244,93,47,0.12)}
.btn.ghost{background:#fff;color:var(--accent-2);border:1px solid #fde7d9}
.btn[disabled]{opacity:.6;cursor:not-allowed}

/* feedback message */
.feedback{grid-column:1/-1;margin-top:8px;color:var(--muted);font-size:15px}

/* Responsive: single column on small screens */
@media (max-width:880px){
  .contact-form{grid-template-columns:1fr}
  .actions{flex-direction:row-reverse}
}

/* small polish */
.contact-wrap{border:1px solid rgba(0,0,0,0.02)}
.brand-block {
    text-align: center;
    padding: 18px;
}

.sun-logo {
    width: 190px;
    margin-bottom: 10px;
}
/* Sun Icon Styling */
.contact-sun {
    width: 197px;
    height: 136px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 200, 50, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 1px 83px;
}

/* Hover effect — subtle bounce */
.contact-sun:hover {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 6px 12px rgba(255, 180, 30, 0.45));
}

/* Optional: align text nicely below the sun */
.sun-caption {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}
.hero-inner {
  padding-left: 0 !important;
}

.hero-text {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #fff6ee;
  --bg-alt: #ffffff;
  --primary: #f45d2f;
  --primary-soft: #ffe1d2;
  --accent: #ffc94b;
  --accent-soft: #fff1c4;
  --text: #231f20;
  --text-muted: #5b5552;
  --card-bg: #ffffff;
  --border-soft: #f4dfd2;
  --radius-lg: 1.7rem;
  --radius-md: 1.1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
  --transition: 0.25s ease;
  --max-width: 1120px;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--text);
  /* subtle page background gradient */
  background: radial-gradient(circle at top left, #ffe8cf 0, #fff6ee 45%, #fffdfa 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections & titles */

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, #f45d2f, #ff9445);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 55px rgba(244, 93, 47, 0.45);
}

.ghost-btn {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.ghost-btn:hover {
  background: var(--primary-soft);
}

/* Links */

.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.card-link::after,
.section-link::after {
  content: "➜";
  font-size: 0.85em;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 240, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 191, 145, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 46px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
}

/* animated pill underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f45d2f, #ffc94b);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* ===== FOOTER ===== */

.site-footer {
  background: radial-gradient(circle at top, #3e1e17 0, #241414 55%);
  color: #f7f2ec;
  padding-top: 3rem;
  margin-top: 0rem;

}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  color: #e1d2c7;
  max-width: 18rem;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #e1d2c7;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e1d2c7;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid #3c2621;
  text-align: center;
  padding: 0.8rem 1.25rem 1.2rem;
  font-size: 0.8rem;
  color: #c9b4a8;
}

/* Page main wrapper */

.page-main {
  min-height: 60vh;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  max-width: 32rem;
  color: var(--text-muted);
}

/* ===== GENERIC CARD HOVERS ===== */

.brand-card,
.info-card,
.recipe-card,
.story-card,
.press-item,
.sustain-card,
.legal-block,
.privacy-section {
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.brand-card:hover,
.info-card:hover,
.recipe-card:hover,
.story-card:hover,
.press-item:hover,
.sustain-card:hover,
.legal-block:hover,
.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  background-color: #fffdf8;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    right: 16px;
    background: var(--bg-alt);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1rem;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.simple-slider {
  text-align: center;
  padding: 40px 0;

  background: linear-gradient(
    to bottom,
    #ffe8cf 0%,
    #fff6ee 40%,
    #f7c978 100%
  );

  border: none;
}


.slides {
  max-width: 1100px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.simple-slider img {
  max-width: unset !important;
  width: 477px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #0004;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.simple-slider {
  text-align: center;
  padding: 40px 0;
  background: radial-gradient(circle at 30% 20%, #fff4e8 0%, #ffe3c8 45%, #f7c978 100%);
}


.slides {
  max-width: 1526px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);;
  gap: 30px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.recipe-card {
  position: relative;
  border-radius: 25px;

}


/* TEXT ON IMAGE */
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fbc649;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* DOTS */
.dots {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background:#ff9445;
  color: white;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  z-index: 10;
}
/* ===========================
   MOBILE RESPONSIVE (max 768px)
   =========================== */
@media (max-width: 768px) {

    /* Reduce section padding */
    .simple-slider {
        padding: 25px 0;
    }

    /* Title size smaller */
    .simple-slider h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* --- Slides --- */
    .slides {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Stack cards vertically on mobile */
    .slide {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 10px;
    }

    /* Image size */
    .recipe-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Label on image */
    .label {
        font-size: 1.2rem;
        bottom: 18px;
        left: 18px;
        padding: 10px 20px;
        border-radius: 18px;
    }

    /* --- Dots --- */
    .dots {
        gap: 10px;
        margin-top: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}
/* MOBILE RESPONSIVE — Fibre Icons Become 1 per Row */
@media (max-width: 768px) {
    .fibre-icons {
        display: flex;
        flex-direction: column;     /* stack vertically */
        align-items: center;
        gap: 30px;                  /* spacing between items */
        margin-top: 20px;
    }

    .fibre-item {
        width: 90%;
        text-align: center;
    }

    .fibre-item img {
        width: 120px;               /* reduce image size */
        height: auto;
        margin-bottom: 10px;
    }

    .fibre-hero h1 {
        font-size: 28px;            /* smaller title */
        padding: 0 20px;
    }

    .fibre-hero button.explore-btn {
        width: 90%;
        font-size: 14px;
        padding: 12px;
    }
}
.our-story {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
    background:#FFFAEC;  /* soft background similar to Kellogg’s */
    overflow: hidden;
}

/* LEFT SUN GRAPHIC */
.sun-graphic {
    background-image: url("../img/sun.jpg"); /* your sun image */
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* RIGHT CONTENT */
.story-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: auto;
}

.story-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .our-story {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sun-graphic {
        height: 200px;
        background-position: center;
        opacity: 0.15; /* subtle background */
    }

    .story-content {
        padding: 40px 20px;
        margin: 0 auto;
    }

    .story-content h1 {
        font-size: 36px;
    }

    .story-content p {
        font-size: 18px;
    }
}
:root{
  --bg:#fff6ee;
  --panel:#fff;
  --accent:#f6b84f;
  --accent-2:#f45d2f;
  --text:#231f20;
  --muted:#6b6260;
  --radius:12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --max-width:920px;
  --gap:16px;
  font-synthesis: none;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:var(--text); background: radial-gradient(circle at top left,#ffe8cf 0,#fff6ee 45%,#fffdfa 100%);}

/* layout */
.page{min-height:100vh;display:flex;flex-direction:column;padding:36px 20px;}
.contact {
    display: flex;
    align-items: flex-start;
    gap: 113px;              /* spacing between form + image */
    padding: -1px 40px;     /* spacing from edges */
}

/* form wrapper */

/* form */
.contact-form{display:grid;grid-template-columns:repeat(1,1fr);gap:0px}
.row{display:flex;flex-direction:column;gap:6px}
.row label{font-weight:600;font-size:13px}
.row input, .row textarea{
  border:1px solid #efe6dd;
  background:var(--panel);
  padding:12px 14px;
  border-radius:10px;
  font-size:15px;
  outline:none;
  transition:box-shadow .15s, border-color .15s;
  resize:vertical;
}
.row input:focus, .row textarea:focus{box-shadow:0 6px 18px rgba(244,93,47,0.08);border-color:rgba(244,93,47,0.12)}

.row textarea{min-height:120px}

/* span error text */
.error{color:#b23b2b;font-size:13px;min-height:18px}

/* actions row spans full width */
.actions{grid-column:1/-1;display:flex;gap:12px;align-items:center}
.btn{background:linear-gradient(90deg,var(--accent-2),#ff9445);border:none;color:#fff;padding:10px 18px;border-radius:999px;cursor:pointer;font-weight:700;box-shadow:0 8px 25px rgba(244,93,47,0.12)}
.btn.ghost{background:#fff;color:var(--accent-2);border:1px solid #fde7d9}
.btn[disabled]{opacity:.6;cursor:not-allowed}

/* feedback message */
.feedback{grid-column:1/-1;margin-top:8px;color:var(--muted);font-size:15px}

/* Responsive: single column on small screens */
@media (max-width:880px){
  .contact-form{grid-template-columns:1fr}
  .actions{flex-direction:row-reverse}
}

/* small polish */
.contact-wrap{border:1px solid rgba(0,0,0,0.02)}
.brand-block {
    text-align: center;
    padding: 18px;
}

.sun-logo {
    width: 190px;
    margin-bottom: 10px;
}
/* Sun Icon Styling */
.contact-sun {
    width: 197px;
    height: 136px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 200, 50, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 1px 83px;
}

/* Hover effect — subtle bounce */
.contact-sun:hover {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 6px 12px rgba(255, 180, 30, 0.45));
}

/* Optional: align text nicely below the sun */
.sun-caption {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}
.hero-inner {
  padding-left: 0 !important;
}

.hero-text {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
@media (max-width: 960px) {
    .contact-img {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Center everything properly on mobile */
    .page {
        padding: 20px !important;
        align-items: center !important; 
    }

    /* Fix the heading — remove huge left margin */
    .contact-hero h1 {
        font-size: 26px;
        margin: 0 0 8px 0 !important;   /* remove that 234px left margin */
        text-align: center !important;
    }

    .contact-hero .lead {
        font-size: 14px;
        max-width: 260px;
        text-align: center !important;
        margin: 0 0 20px 0 !important;
    }

    /* Make form full width but not huge */
    .contact-wrap {
        width: 100% !important;
        padding: 20px !important;
        margin-left: 0 !important;
    }

    /* Form input sizes smaller */
    .row input,
    .row textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }


}

.contact-img{
  width: 550px;
  height: auto;
  margin-right: 65px;
  align-items: center;
  margin-top: 47px;
  border-radius: 20px;
  opacity: 20px;
}
/* --------------------
   Footer override - paste at end of base.css
   -------------------- */

.site-footer {
  background: linear-gradient(180deg, #24110f 0%, #1b0b09 100%);
  color: #f6efe8;
  padding: 26px 0 18px;        /* compact height */
  font-size: 0.92rem;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* layout grid */
.footer-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap: 1.6rem;
  align-items: start;
}

/* Brand column */
.footer-brand .brand-logo {
  width: 110px;
  height: auto;
  display: block;
  margin-bottom: 0.45rem;
}
.footer-brand .brand-tag {
  margin: 0 0 0.55rem;
  color: rgba(0, 0, 0, 0.92);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 300px;
}

/* pills */
.footer-pills { display:flex; gap:.4rem; flex-wrap:wrap; margin-top:4px; }
.footer-pill {
  padding: .24rem .6rem;
  font-size:.72rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  text-transform:uppercase;
  letter-spacing:.07em;
}

/* headings & lists */
.footer-heading { margin:0 0 .6rem; font-size:1rem; color:#fff; font-weight:700; }

/* remove bullets everywhere inside footer specifically */
.site-footer ul,
.site-footer ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* nav links */
.footer-nav li + li { margin-top: .36rem; }
.footer-nav a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-size: .92rem;
  display: inline-block;
  transition: color .16s ease, transform .12s ease;
}
.footer-nav a:hover { color: #fff; transform: translateX(4px); }

/* social column */
.social-row { display:flex; gap:.5rem; margin-bottom:.45rem; align-items:center; }
.social-btn {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  color:#fff; font-weight:700; font-size:.85rem; text-decoration:none;
  transition: transform .14s ease, background .14s ease, color .14s ease;
}
.social-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg,#f45d2f,#ffc94b);
  color:#fff;
}

.footer-social-note {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: .86rem;
  max-width: 260px;
  line-height: 1.45;
}

/* bottom strip */
.footer-bottom {
  max-width: 1040px;
  margin: 14px auto 0;
  padding: 12px 1.25rem 6px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  border-top:1px solid rgba(255,255,255,0.04);
  box-sizing:border-box;
}
.footer-bottom .copyright {
  margin:0;
  color: rgba(255,255,255,0.7);
  font-size:.86rem;
}

/* legal links inline */
.legal-links {
  display:flex;
  gap:.9rem;
  align-items:center;
  margin:0;
}
.legal-links a {
  color: rgba(255,255,255,0.68);
  font-size:.86rem;
  text-decoration: none;
}
.legal-links a:hover { color:#fff; text-decoration:underline; }

/* back-to-top small & visible */
.back-to-top {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 40px; height: 40px;
  border-radius:50%;
  background: linear-gradient(135deg,#f45d2f,#ff9445);
  color:#fff; border:none; font-size:16px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition: opacity .28s ease, transform .2s ease, visibility .28s ease;
  z-index:60;
}
.back-to-top.show { opacity:1; visibility:visible; transform:translateY(0); }

/* small screens: stack & center */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }
  .footer-brand { order:1; }
  .footer-links { order:2; }
  .footer-social { order:3; }

  .footer-bottom { flex-direction: column-reverse; align-items:center; text-align:center; gap:8px; padding-top:10px; }
  .legal-links { justify-content:center; flex-wrap:wrap; gap:.6rem; }
  .footer-brand .brand-tag { max-width:100%; }
}

/* safety: hide any stray list markers that might come from older rules */
.site-footer li::marker { display: none; }
.site-footer ul { list-style: none !important; }
/* Social icon style (inline SVGs) - add at end of base.css */
.social-row { display:flex; gap:.6rem; align-items:center; }

.social-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  transition: transform .14s ease, background .14s ease, box-shadow .14s ease;
  text-decoration:none;
  box-sizing:border-box;
}

/* SVG inside button inherits color */
.social-btn svg { display:block; width:18px; height:18px; color: #fff; }

/* hover states */
.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(244,93,47,0.18);
}

/* brand-colored hover backgrounds (subtle) */
.social-btn[aria-label="Facebook"]:hover {
  background: linear-gradient(135deg, #3b5998 0%, rgba(59,89,152,0.95) 100%);
}
.social-btn[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%);
}
.social-btn[aria-label="YouTube"]:hover {
  background: linear-gradient(135deg, #ff0000 0%, #e53935 100%);
}

/* keep icons legible on small screens */
@media (max-width:560px) {
  .social-btn { width:40px; height:40px; }
  .social-btn svg { width:16px; height:16px; }
}
/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #fff6ee;
  --bg-alt: #ffffff;
  --primary: #f45d2f;
  --primary-soft: #ffe1d2;
  --accent: #ffc94b;
  --accent-soft: #fff1c4;
  --text: #231f20;
  --text-muted: #5b5552;
  --card-bg: #ffffff;
  --border-soft: #f4dfd2;
  --radius-lg: 1.7rem;
  --radius-md: 1.1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
  --transition: 0.25s ease;
  --max-width: 1120px;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--text);
  /* subtle page background gradient */
  background: radial-gradient(circle at top left, #ffe8cf 0, #fff6ee 45%, #fffdfa 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  padding: 0 1.25rem;
}

/* Sections & titles */

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, #f45d2f, #ff9445);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 55px rgba(244, 93, 47, 0.45);
}

.ghost-btn {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.ghost-btn:hover {
  background: var(--primary-soft);
}

/* Links */

.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.card-link::after,
.section-link::after {
  content: "➜";
  font-size: 0.85em;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 240, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 191, 145, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 46px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
}

/* animated pill underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f45d2f, #ffc94b);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 80%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* ===== FOOTER ===== */

/* ===== FOOTER ===== */

.site-footer {
  background: #fff6ee;
  padding: 30px 0 30px;
  color: #231f20;
  border-top: 4px solid #f45d2f20;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.footer-brand img {
  width: 130px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #5b5552;
  line-height: 1.6;
  max-width: 250px;
}

/* Titles */
.site-footer h4 {
  color: #f45d2f;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Link lists */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  text-decoration: none;
  color: #231f20;
  transition: 0.2s ease;
}

.site-footer ul li a:hover {
  color: #f45d2f;
}

/* Contact section */
.footer-contact p {
  margin: 8px 0;
  color: #5b5552;
  line-height: 1.5;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ffe1d2;
  border-radius: 50%;
  font-weight: bold;
  color: #f45d2f;
  transition: 0.2s;
}

.circle-icon:hover {
  transform: translateY(-2px);
  background: #f45d2f;
  color: white;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form label {
  font-size: 14px;
  color: #5b5552;
}

.newsletter-form input {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #f8c6b3;
  outline: none;
  font-size: 14px;
}

.newsletter-form input:focus {
  border-color: #f45d2f;
}

.subscribe-btn {
  background: #f45d2f;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.subscribe-btn:hover {
  background: #d94a20;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #5b5552;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 110px;
  }
}


/* Page main wrapper */

.page-main {
  min-height: 60vh;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  max-width: 32rem;
  color: var(--text-muted);
}

/* ===== GENERIC CARD HOVERS ===== */

.brand-card,
.info-card,
.recipe-card,
.story-card,
.press-item,
.sustain-card,
.legal-block,
.privacy-section {
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.brand-card:hover,
.info-card:hover,
.recipe-card:hover,
.story-card:hover,
.press-item:hover,
.sustain-card:hover,
.legal-block:hover,
.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  background-color: #fffdf8;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    right: 16px;
    background: var(--bg-alt);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1rem;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.simple-slider {
  text-align: center;
  padding: 40px 0;

  background: linear-gradient(
    to bottom,
    #ffe8cf 0%,
    #fff6ee 40%,
    #f7c978 100%
  );

  border: none;
}


.slides {
  max-width: 1100px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.simple-slider img {
  max-width: unset !important;
  width: 477px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #0004;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.simple-slider {
  text-align: center;
  padding: 40px 0;
  background: radial-gradient(circle at 30% 20%, #fff4e8 0%, #ffe3c8 45%, #f7c978 100%);
}


.slides {
  max-width: 1526px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);;
  gap: 30px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.recipe-card {
  position: relative;
  border-radius: 25px;

}


/* TEXT ON IMAGE */
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fbc649;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* DOTS */
.dots {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background:#ff9445;
  color: white;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  z-index: 10;
}
/* ===========================
   MOBILE RESPONSIVE (max 768px)
   =========================== */
@media (max-width: 768px) {

    /* Reduce section padding */
    .simple-slider {
        padding: 25px 0;
    }

    /* Title size smaller */
    .simple-slider h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* --- Slides --- */
    .slides {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Stack cards vertically on mobile */
    .slide {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 10px;
    }

    /* Image size */
    .recipe-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Label on image */
    .label {
        font-size: 1.2rem;
        bottom: 18px;
        left: 18px;
        padding: 10px 20px;
        border-radius: 18px;
    }

    /* --- Dots --- */
    .dots {
        gap: 10px;
        margin-top: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}
/* MOBILE RESPONSIVE — Fibre Icons Become 1 per Row */
@media (max-width: 768px) {
    .fibre-icons {
        display: flex;
        flex-direction: column;     /* stack vertically */
        align-items: center;
        gap: 30px;                  /* spacing between items */
        margin-top: 20px;
    }

    .fibre-item {
        width: 90%;
        text-align: center;
    }

    .fibre-item img {
        width: 120px;               /* reduce image size */
        height: auto;
        margin-bottom: 10px;
    }

    .fibre-hero h1 {
        font-size: 28px;            /* smaller title */
        padding: 0 20px;
    }

    .fibre-hero button.explore-btn {
        width: 90%;
        font-size: 14px;
        padding: 12px;
    }
}
.our-story {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
    background:#FFFAEC;  /* soft background similar to Kellogg’s */
    overflow: hidden;
}

/* LEFT SUN GRAPHIC */
.sun-graphic {
    background-image: url("../img/sun.jpg"); /* your sun image */
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* RIGHT CONTENT */
.story-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: auto;
}

.story-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .our-story {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sun-graphic {
        height: 200px;
        background-position: center;
        opacity: 0.15; /* subtle background */
    }

    .story-content {
        padding: 40px 20px;
        margin: 0 auto;
    }

    .story-content h1 {
        font-size: 36px;
    }

    .story-content p {
        font-size: 18px;
    }
}
:root{
  --bg:#fff6ee;
  --panel:#fff;
  --accent:#f6b84f;
  --accent-2:#f45d2f;
  --text:#231f20;
  --muted:#6b6260;
  --radius:12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --max-width:920px;
  --gap:16px;
  font-synthesis: none;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:var(--text); background: radial-gradient(circle at top left,#ffe8cf 0,#fff6ee 45%,#fffdfa 100%);}

/* layout */
.page{min-height:100vh;display:flex;flex-direction:column;padding:36px 20px;}
.contact {
    display: flex;
    align-items: flex-start;
    gap: 113px;              /* spacing between form + image */
    padding: -1px 40px;     /* spacing from edges */
}

/* form wrapper */

/* form */
.contact-form{display:grid;grid-template-columns:repeat(1,1fr);gap:0px}
.row{display:flex;flex-direction:column;gap:6px}
.row label{font-weight:600;font-size:13px}
.row input, .row textarea{
  border:1px solid #efe6dd;
  background:var(--panel);
  padding:12px 14px;
  border-radius:10px;
  font-size:15px;
  outline:none;
  transition:box-shadow .15s, border-color .15s;
  resize:vertical;
}
.row input:focus, .row textarea:focus{box-shadow:0 6px 18px rgba(244,93,47,0.08);border-color:rgba(244,93,47,0.12)}

.row textarea{min-height:120px}

/* span error text */
.error{color:#b23b2b;font-size:13px;min-height:18px}

/* actions row spans full width */
.actions{grid-column:1/-1;display:flex;gap:12px;align-items:center}
.btn{background:linear-gradient(90deg,var(--accent-2),#ff9445);border:none;color:#fff;padding:10px 18px;border-radius:999px;cursor:pointer;font-weight:700;box-shadow:0 8px 25px rgba(244,93,47,0.12)}
.btn.ghost{background:#fff;color:var(--accent-2);border:1px solid #fde7d9}
.btn[disabled]{opacity:.6;cursor:not-allowed}

/* feedback message */
.feedback{grid-column:1/-1;margin-top:8px;color:var(--muted);font-size:15px}

/* Responsive: single column on small screens */
@media (max-width:880px){
  .contact-form{grid-template-columns:1fr}
  .actions{flex-direction:row-reverse}
}

/* small polish */
.contact-wrap{border:1px solid rgba(0,0,0,0.02)}
.brand-block {
    text-align: center;
    padding: 18px;
}

.sun-logo {
    width: 190px;
    margin-bottom: 10px;
}
/* Sun Icon Styling */
.contact-sun {
    width: 197px;
    height: 136px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 200, 50, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 1px 83px;
}

/* Hover effect — subtle bounce */
.contact-sun:hover {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 6px 12px rgba(255, 180, 30, 0.45));
}

/* Optional: align text nicely below the sun */
.sun-caption {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}
.hero-inner {
  padding-left: 0 !important;
}

.hero-text {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
@media (max-width: 960px) {
    .contact-img {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Center everything properly on mobile */
    .page {
        padding: 20px !important;
        align-items: center !important; 
    }

    /* Fix the heading — remove huge left margin */
    .contact-hero h1 {
        font-size: 26px;
        margin: 0 0 8px 0 !important;   /* remove that 234px left margin */
        text-align: center !important;
    }

    .contact-hero .lead {
        font-size: 14px;
        max-width: 260px;
        text-align: center !important;
        margin: 0 0 20px 0 !important;
    }

    /* Make form full width but not huge */
    .contact-wrap {
        width: 100% !important;
        padding: 20px !important;
        margin-left: 0 !important;
    }

    /* Form input sizes smaller */
    .row input,
    .row textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }


}

.contact-img{
  width: 550px;
  height: auto;
  margin-right: 65px;
  align-items: center;
  margin-top: 47px;
  border-radius: 20px;
  opacity: 20px;
}
/* ---------------------------
   Contact section — replacement
   --------------------------- */
.contact {
  display: flex;
  align-items: center;     /* vertically center form + image */
  justify-content: center; /* center horizontally within page */
  gap: 48px;               /* spacing between form and image */
  padding: 24px 40px;      /* breathing room */
  width: 100%;
  box-sizing: border-box;
}



/* Make the form single-column inside the wrapper (keeps inputs stacked) */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Decorative/contact image to the right */
.contact-img {
  width: 480px;
  max-width: 45%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: block;
}

/* Small screens — stack and center */
@media (max-width: 960px) {
  .contact {
    flex-direction: column;
    gap: 20px;
    padding: 18px 20px;
    align-items: center;
  }

  .contact-wrap {
    width: 100%;
    padding: 20px;
  }

  .contact-hero {
    text-align: center;
    margin-bottom: 8px;
  }

  .contact-img {
    width: 100%;
    max-width: 720px;
    display: block;
  }
}
/* ---------------------------
   Contact section — wider form
   --------------------------- */
.contact {
  display: flex;
  align-items: center;     /* vertically center form + image */
  justify-content: center; /* center horizontally within page */
  gap: 48px;               /* spacing between form and image */
  padding: 24px 40px;      /* breathing room */
  width: 100%;
  box-sizing: border-box;
}



/* Make the form single-column inside the wrapper (keeps inputs stacked) */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Decorative/contact image to the right */
.contact-img {
  width: 640px;
  max-width: 48%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: block;
}

/* Small screens — stack and center */
@media (max-width: 960px) {
  .contact {
    flex-direction: column;
    gap: 20px;
    padding: 18px 20px;
    align-items: center;
  }

  .contact-wrap {
    width: 100%;
    padding: 20px;
  }

  .contact-hero {
    text-align: center;
    margin-bottom: 8px;
  }

  .contact-img {
    width: 100%;
    max-width: 720px;
    display: block;
  }
}


/* Reduce spacing between fields */
.contact-form {
    gap: 6px !important;
}

/* Make textarea smaller */
.contact-form textarea {
    min-height: 80px !important;
}

/* Reduce spacing under labels */
.contact-form .row {
    gap: 4px !important;
}

/* Reduce button row spacing */
.actions {
    margin-top: 6px !important;
}
/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #fff6ee;
  --bg-alt: #ffffff;
  --primary: #f45d2f;
  --primary-soft: #ffe1d2;
  --accent: #ffc94b;
  --accent-soft: #fff1c4;
  --text: #231f20;
  --text-muted: #5b5552;
  --card-bg: #ffffff;
  --border-soft: #f4dfd2;
  --radius-lg: 1.7rem;
  --radius-md: 1.1rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
  --transition: 0.25s ease;
  --max-width: 1120px;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--text);
  /* subtle page background gradient */
  background: radial-gradient(circle at top left, #ffe8cf 0, #fff6ee 45%, #fffdfa 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  padding: 0 1.25rem;
}

/* Sections & titles */

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, #f45d2f, #ff9445);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 55px rgba(244, 93, 47, 0.45);
}

.ghost-btn {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.ghost-btn:hover {
  background: var(--primary-soft);
}

/* Links */

.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.card-link::after,
.section-link::after {
  content: "➜";
  font-size: 0.85em;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 240, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 191, 145, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 46px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
}

/* animated pill underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f45d2f, #ffc94b);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 80%;
}
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  width: 80%;
}


/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* ===== FOOTER ===== */

/* ===== FOOTER ===== */

.site-footer {
  background: #f4e7da;
  padding: 30px 0 30px;
  color: #231f20;
  border-top: 4px solid #f45d2f20;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.footer-brand img {
  width: 130px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #5b5552;
  line-height: 1.6;
  max-width: 250px;
}

/* Titles */
.site-footer h4 {
  color: #f45d2f;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Link lists */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  text-decoration: none;
  color: #231f20;
  transition: 0.2s ease;
}

.site-footer ul li a:hover {
  color: #f45d2f;
}

/* Contact section */
.footer-contact p {
  margin: 8px 0;
  color: #5b5552;
  line-height: 1.5;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ffe1d2;
  border-radius: 50%;
  font-weight: bold;
  color: #f45d2f;
  transition: 0.2s;
}

.circle-icon:hover {
  transform: translateY(-2px);
  background: #f45d2f;
  color: white;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form label {
  font-size: 14px;
  color: #5b5552;
}

.newsletter-form input {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #f8c6b3;
  outline: none;
  font-size: 14px;
}

.newsletter-form input:focus {
  border-color: #f45d2f;
}

.subscribe-btn {
  background: #f45d2f;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.subscribe-btn:hover {
  background: #d94a20;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #5b5552;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 110px;
  }
}


/* Page main wrapper */

.page-main {
  min-height: 60vh;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  max-width: 32rem;
  color: var(--text-muted);
}

/* ===== GENERIC CARD HOVERS ===== */

.brand-card,
.info-card,
.recipe-card,
.story-card,
.press-item,
.sustain-card,
.legal-block,
.privacy-section {
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.brand-card:hover,
.info-card:hover,
.recipe-card:hover,
.story-card:hover,
.press-item:hover,
.sustain-card:hover,
.legal-block:hover,
.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  background-color: #fffdf8;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    right: 16px;
    background: var(--bg-alt);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1rem;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.simple-slider {
  text-align: center;
  padding: 40px 0;

  background: linear-gradient(
    to bottom,
    #ffe8cf 0%,
    #fff6ee 40%,
    #f7c978 100%
  );

  border: none;
}


.slides {
  max-width: 1100px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.simple-slider img {
  max-width: unset !important;
  width: 477px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #0004;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.simple-slider {
  text-align: center;
  padding: 40px 0;
  background: radial-gradient(circle at 30% 20%, #fff4e8 0%, #ffe3c8 45%, #f7c978 100%);
}


.slides {
  max-width: 1526px;
  margin: auto;
}

.slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);;
  gap: 30px;
  padding: 20px;
}

.slide.active {
  display: grid;
}

.recipe-card {
  position: relative;
  border-radius: 25px;

}


/* TEXT ON IMAGE */
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fbc649;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* DOTS */
.dots {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.dot.active {
  background: #000;
}
.label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background:#ff9445;
  color: white;
  padding: 14px 24px;
  border-radius: 22px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  z-index: 10;
}
/* ===========================
   MOBILE RESPONSIVE (max 768px)
   =========================== */
@media (max-width: 768px) {

    /* Reduce section padding */
    .simple-slider {
        padding: 25px 0;
    }

    /* Title size smaller */
    .simple-slider h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* --- Slides --- */
    .slides {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Stack cards vertically on mobile */
    .slide {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 10px;
    }

    /* Image size */
    .recipe-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Label on image */
    .label {
        font-size: 1.2rem;
        bottom: 18px;
        left: 18px;
        padding: 10px 20px;
        border-radius: 18px;
    }

    /* --- Dots --- */
    .dots {
        gap: 10px;
        margin-top: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}
/* MOBILE RESPONSIVE — Fibre Icons Become 1 per Row */
@media (max-width: 768px) {
    .fibre-icons {
        display: flex;
        flex-direction: column;     /* stack vertically */
        align-items: center;
        gap: 30px;                  /* spacing between items */
        margin-top: 20px;
    }

    .fibre-item {
        width: 90%;
        text-align: center;
    }

    .fibre-item img {
        width: 120px;               /* reduce image size */
        height: auto;
        margin-bottom: 10px;
    }

    .fibre-hero h1 {
        font-size: 28px;            /* smaller title */
        padding: 0 20px;
    }

    .fibre-hero button.explore-btn {
        width: 90%;
        font-size: 14px;
        padding: 12px;
    }
}
.our-story {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
    background:#FFFAEC;  /* soft background similar to Kellogg’s */
    overflow: hidden;
}

/* LEFT SUN GRAPHIC */
.sun-graphic {
    background-image: url("../img/sun.jpg"); /* your sun image */
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* RIGHT CONTENT */
.story-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: auto;
}

.story-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .our-story {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sun-graphic {
        height: 200px;
        background-position: center;
        opacity: 0.15; /* subtle background */
    }

    .story-content {
        padding: 40px 20px;
        margin: 0 auto;
    }

    .story-content h1 {
        font-size: 36px;
    }

    .story-content p {
        font-size: 18px;
    }
}
:root{
  --bg:#fff6ee;
  --panel:#fff;
  --accent:#f6b84f;
  --accent-2:#f45d2f;
  --text:#231f20;
  --muted:#6b6260;
  --radius:12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --max-width:920px;
  --gap:16px;
  font-synthesis: none;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:var(--text); background: radial-gradient(circle at top left,#ffe8cf 0,#fff6ee 45%,#fffdfa 100%);}

/* layout */
.page{min-height:100vh;display:flex;flex-direction:column;padding:36px 20px;}
.contact {
    display: flex;
    align-items: flex-start;
    gap: 113px;              /* spacing between form + image */
    padding: -1px 40px;     /* spacing from edges */
}




/* form wrapper */
.contact-wrap{
  width:40%;
  background:linear-gradient(180deg,#ffffffcc, #fff);
  border-radius:16px;
  padding:28px;
  box-shadow:var(--shadow);
  margin-left: 50px;
}

/* form */
.contact-form{display:grid;grid-template-columns:repeat(1,1fr);gap:0px}
.row{display:flex;flex-direction:column;gap:6px}
.row label{font-weight:600;font-size:13px}
.row input, .row textarea{
  border:1px solid #efe6dd;
  background:var(--panel);
  padding:12px 14px;
  border-radius:10px;
  font-size:15px;
  outline:none;
  transition:box-shadow .15s, border-color .15s;
  resize:vertical;
}
.row input:focus, .row textarea:focus{box-shadow:0 6px 18px rgba(244,93,47,0.08);border-color:rgba(244,93,47,0.12)}

.row textarea{min-height:120px}

/* span error text */
.error{color:#b23b2b;font-size:13px;min-height:18px}

/* actions row spans full width */
.actions{grid-column:1/-1;display:flex;gap:12px;align-items:center}
.btn{background:linear-gradient(90deg,var(--accent-2),#ff9445);border:none;color:#fff;padding:10px 18px;border-radius:999px;cursor:pointer;font-weight:700;box-shadow:0 8px 25px rgba(244,93,47,0.12)}
.btn.ghost{background:#fff;color:var(--accent-2);border:1px solid #fde7d9}
.btn[disabled]{opacity:.6;cursor:not-allowed}

/* feedback message */
.feedback{grid-column:1/-1;margin-top:8px;color:var(--muted);font-size:15px}

/* Responsive: single column on small screens */
@media (max-width:880px){
  .contact-form{grid-template-columns:1fr}
  .actions{flex-direction:row-reverse}
}

/* small polish */
.contact-wrap{border:1px solid rgba(0,0,0,0.02)}
.brand-block {
    text-align: center;
    padding: 18px;
}

.sun-logo {
    width: 190px;
    margin-bottom: 10px;
}
/* Sun Icon Styling */
.contact-sun {
    width: 197px;
    height: 136px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 200, 50, 0.35));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 1px 83px;
}

/* Hover effect — subtle bounce */
.contact-sun:hover {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 6px 12px rgba(255, 180, 30, 0.45));
}

/* Optional: align text nicely below the sun */
.sun-caption {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}
.hero-inner {
  padding-left: 0 !important;
}

.hero-text {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
@media (max-width: 960px) {
    .contact-img {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Center everything properly on mobile */
    .page {
        padding: 20px !important;
        align-items: center !important; 
    }

    /* Fix the heading — remove huge left margin */
    .contact-hero h1 {
        font-size: 26px;
        margin: 0 0 8px 0 !important;   /* remove that 234px left margin */
        text-align: center !important;
    }

    .contact-hero .lead {
        font-size: 14px;
        max-width: 260px;
        text-align: center !important;
        margin: 0 0 20px 0 !important;
    }

    /* Make form full width but not huge */
    .contact-wrap {
        width: 100% !important;
        padding: 20px !important;
        margin-left: 0 !important;
    }

    /* Form input sizes smaller */
    .row input,
    .row textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }


}

.contact-img{
  width: 550px;
  height: auto;
  margin-right: 65px;
  align-items: center;
  margin-top: 47px;
  border-radius: 20px;
  opacity: 20px;
}
/* -------------------------------
   FINAL CONTACT FORM WIDTH + HEIGHT FIX
   ------------------------------- */



/* Reduce spacing between fields */
.contact-form {
    gap: 8px !important;
}

/* Reduce label + input spacing */
.contact-form .row {
    gap: 4px !important;
}

/* Make textarea shorter */
.contact-form textarea {
    min-height: 70px !important;
    padding: 10px 12px !important;
}

/* Reduce spacing above button row */
.actions {
    margin-top: 6px !important;
}

/* Contact image stays same — OPTIONAL reduce size if needed */
/* .contact-img { width: 520px; } */

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-wrap {
        width: 100% !important;
        padding: 18px !important;
    }
}
/* -------------------------------
   CONTACT: full-width left column
   Paste this at the END of base.css
   ------------------------------- */

.contact {
  display: flex;
  align-items: flex-start;   /* align top of form and image */
  justify-content: flex-start; /* keep form to the left */
  gap: 149px;
  padding: 24px 40px;
  width: 100%;
  box-sizing: border-box;
}



/* Right column: decorative image (keeps 40%) */
.contact-img {
  flex: 0 0 38%;
  max-width: 38%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Keep inputs stacked and compact */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

/* Tighter spacing under labels and between rows */
.contact-form .row {
  gap: 6px;
}

/* Shorter textarea to reduce overall card height */
.contact-form textarea {
  min-height: 70px;
  padding: 10px 12px;
}

/* Buttons: small top gap */
.actions {
  margin-top: 8px;
}

.contact-hero {
    text-align: center;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}
.contact-hero h1{
  text-align: center;
}
/* Remove centering done by the .page wrapper */
.page {
    align-items: flex-start !important;
    padding-left: 20px !important;   /* small gap so it’s not touching screen edge */
    padding-right: 20px !important;
}


/* Responsiveness: stack on small screens */
@media (max-width: 960px) {
  .contact {
    flex-direction: column;
    gap: 18px;
    padding: 18px 20px;
    align-items: center;
  }

  .contact-wrap,
  .contact-img {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-hero {
    text-align: center;
  }
}



  /* HERO SECTION */
.fibre-hero {
    text-align: center;
    padding: 60px 0;
    background: #fff;
}

.fibre-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: Georgia, serif;
}

/* ICON ROW */
.fibre-icons {
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 20px 40px;
}

/* HERO SECTION FIXED */
.fibre-hero {
    text-align: center;
    padding: 40px 0;       /* reduced spacing */
    background: #fff;
}

/* Bigger heading */
.fibre-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

/* FIX ICON ROW */
.fibre-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;  /* reduce gap to pull them closer */
    margin-top: 10px;
    padding: 0 40px;
}

/* ITEM WRAPPER */
.fibre-item {
    text-align: center;
    width: 220px;   /* bigger width */
}

/* BIGGER ICONS */
.fibre-item img {
    width: 104px;
    margin-bottom: 15px;
     display: block;
    margin: 0 auto;
}

/* BIGGER TITLE */
.fibre-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.fibre-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding-top: 10px;
}

.fibre-item {
    width: 220px;
    text-align: center;
}

.fibre-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
}

.fibre-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.fibre-item p {
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

/* DESCRIPTION */
.fibre-item p {
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

/* BUTTON BIGGER + CENTER */
.explore-btn {
    margin-top: 40px;
    padding: 16px 50px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.explore-btn {
    background: linear-gradient(135deg, #f45d2f, #ff9445);
    color: #ffffff;
    border-color: transparent;
}

.detail-box,
.detail-small-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.detail-box h2,
.detail-small-box h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.detail-box ul,
.detail-small-box ul {
    margin-top: 10px;
    line-height: 1.6;
}
.social-icons {
  display: flex;
  gap: 14px;
}

.social-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.detail-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff5722;
    font-weight: 600;
    cursor: pointer;
}


/* Ensure sticky header stays above EVERYTHING */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99999; /* higher than all sections */
  background: #fff;
}

/* Prevent content from sliding under header on mobile */
@media (max-width: 900px) {
  body {
    padding-top: 80px; /* adjust if header height changes */
  }
}

