/* ===================== Intori — base ===================== */
:root {
  --cream: #faf2e6;
  --cream-2: #f3e7d3;
  --ink: #3d1f12;
  --ink-deep: #2c1709;
  --brown: #5b2e16;
  --brown-soft: #6b5340;
  --taupe: #7a5c46;
  --green: #6ba43f;
  --lime: #9ccc65;
  --peach: #e8b07a;
  --rust: #c98a4b;
  --gold: #b07c3f;
  --card-border: #efe1cb;
  --card-border-2: #e7d6ba;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  overflow-x: hidden;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  position: relative;
  width: 100%;
}
::selection {
  background: var(--green);
  color: #fff;
}
img {
  display: block;
}

input::placeholder,
textarea::placeholder {
  color: #a98a72;
}

/* ===================== shared layout ===================== */
.section {
  position: relative;
  padding: 120px 28px;
}
.section--cream {
  background: var(--cream);
}
.section--sand {
  background: var(--cream-2);
}

.container {
  margin: 0 auto;
}
.container--md {
  max-width: 1180px;
}
.container--sm {
  max-width: 1120px;
}
.container--xs {
  max-width: 1080px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.products .section-head {
  margin-bottom: 60px;
}
.band .section-head {
  margin-bottom: 56px;
  max-width: 680px;
}
.band--stall .section-head {
  max-width: 660px;
}
.setup .section-head {
  max-width: 700px;
}

.section-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-top: 14px;
}
.section-title--light {
  color: var(--cream);
}
.section-title--left {
  text-align: left;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 14px 0 18px;
}
.contact .section-title--left {
  font-size: clamp(30px, 4vw, 46px);
}

.section-lead {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--taupe);
  margin-top: 18px;
  text-wrap: pretty;
}
.section-lead--light {
  color: #e0cdb6;
}

.eyebrow {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow--green {
  color: var(--green);
}
.eyebrow--lime {
  color: var(--lime);
}

.kicker {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.prose {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.65;
  color: var(--taupe);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.prose:last-of-type {
  margin-bottom: 0;
}

/* ===================== buttons & links ===================== */
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border-radius: 999px;
  display: inline-block;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.btn--primary {
  color: var(--cream);
  background: var(--brown);
  padding: 16px 30px;
  box-shadow: 0 10px 28px rgba(91, 46, 22, 0.22);
}
.btn--primary:hover {
  background: var(--green);
}
.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid var(--ink);
  padding: 14px 28px;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.link-arrow {
  margin-top: auto;
  align-self: flex-end;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--green);
  text-decoration: none;
}

.pill {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
  background: var(--cream-2);
  padding: 10px 18px;
  border-radius: 999px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ece0cc;
}
.hero__bg {
  position: absolute;
  top: -14%;
  left: 0;
  right: 0;
  height: 132%;
  z-index: 0;
  background-image: url("assets/hero.webp");
  background-size: cover;
  background-position: 74% center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    96deg,
    rgba(247, 239, 225, 0.97) 0%,
    rgba(247, 239, 225, 0.9) 26%,
    rgba(247, 239, 225, 0.5) 48%,
    rgba(247, 239, 225, 0.12) 64%,
    rgba(247, 239, 225, 0) 80%
  );
}
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 40px;
  will-change: transform;
}
.hero__inner {
  max-width: 610px;
}
.hero__logo-wrap {
  position: absolute;
  top: clamp(24px, 5vh, 60px);
  left: 0;
  right: 0;
  z-index: 5;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  pointer-events: none;
}
.hero__logo {
  height: clamp(140px, 13vw, 176px);
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(60, 30, 18, 0.18));
}
/* The hero headline is vertically centred, so on small or short viewports a
   big top-left logo would collide with it — only show it when there's room. */
@media (max-width: 768px), (max-height: 1100px) {
  .hero__logo-wrap {
    display: none;
  }
}

.eyebrow-pill {
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-deep);
  background: var(--peach);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -1px;
  color: var(--ink);
}
.hero__lead {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--brown-soft);
  max-width: 490px;
  margin: 22px 0 0;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ===================== NAV ===================== */
.nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: linear-gradient(
    to bottom,
    rgba(247, 239, 225, 0) 0%,
    rgba(247, 239, 225, 0.75) 65%,
    #faf2e6 95%
  );
  transition: box-shadow 0.35s ease;
}
.nav.is-pinned {
  position: fixed;
  top: 0;
  bottom: auto;
  background: var(--cream);
  box-shadow: 0 6px 26px rgba(60, 30, 18, 0.14);
  border-bottom: 1px solid rgba(91, 46, 22, 0.1);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.nav__group {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__group--left {
  justify-content: flex-end;
}
.nav__group--right {
  justify-content: flex-start;
}
.nav__link {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.25s ease;
}
.nav__link:hover {
  color: var(--green);
}
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.nav__logo img {
  height: 81px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(60, 30, 18, 0.18));
}
.nav__cta {
  font-weight: 800;
  font-size: 14px;
  color: var(--cream);
  background: var(--brown);
  padding: 10px 20px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(91, 46, 22, 0.22);
}
.nav__cta:hover {
  color: var(--cream);
  background: var(--green);
}

/* ===================== SERVICES ===================== */
.services .container {
  max-width: 1180px;
}
.services {
  padding: 120px 28px 100px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 38px 32px;
  box-shadow: 0 14px 40px rgba(91, 46, 22, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(91, 46, 22, 0.12);
}
.service-card__num {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 22px;
}
.service-card__num--peach {
  background: var(--peach);
  color: var(--ink-deep);
}
.service-card__num--green {
  background: var(--lime);
  color: var(--ink-deep);
}
.service-card__num--rust {
  background: var(--rust);
  color: var(--cream);
}
.service-card__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 8px 0 12px;
}
.service-card__body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--taupe);
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

/* ===================== PARALLAX BANDS ===================== */
.band {
  overflow: hidden;
  background: var(--ink-deep);
  padding: 130px 28px;
  color: var(--cream);
}
.band__bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  height: 150%;
  z-index: 0;
  background-size: cover;
  will-change: transform;
}
.band--stall .band__bg {
  background-image: url("assets/stall.webp");
  background-position: center 40%;
}
.band--pour .band__bg {
  background-image: url("assets/pour.webp");
  background-position: center;
}
.band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(44, 23, 9, 0.72), rgba(44, 23, 9, 0.86));
}
.band__scrim--why {
  background: linear-gradient(rgba(44, 23, 9, 0.74), rgba(44, 23, 9, 0.87));
}
.band__content {
  position: relative;
  z-index: 2;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
}
.audience-card {
  background: rgba(250, 242, 230, 0.05);
  border: 1px solid rgba(232, 176, 122, 0.2);
  border-radius: 20px;
  padding: 26px;
}
.audience-card__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--peach);
  margin-bottom: 8px;
}
.audience-card__body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: #d8c4ad;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.why-card {
  background: rgba(250, 242, 230, 0.05);
  border: 1px solid rgba(232, 176, 122, 0.18);
  border-radius: 20px;
  padding: 30px;
}
.why-card__num {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--peach);
}
.why-card__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--cream);
  margin: 6px 0 10px;
}
.why-card__body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #d8c4ad;
}

/* ===================== ABOUT ===================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-image: url("assets/team.webp");
  background-size: cover;
  background-position: center 35%;
  box-shadow: 0 24px 60px rgba(91, 46, 22, 0.16);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px 20px;
}
.value-card__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.value-card__body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.45;
}

/* ===================== PRODUCTS ===================== */
.prod-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.prod-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--card-border-2);
  box-shadow: 0 14px 40px rgba(91, 46, 22, 0.06);
}
.prod-card__img {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.prod-card__body {
  padding: 26px 24px;
}
.prod-card__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 12px;
}
.prod-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.prod-card__list li {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--taupe);
}
.products__note {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--taupe);
  margin-top: 40px;
}
.products__note a {
  color: var(--green);
  text-decoration: none;
}

/* ===================== SETUP / STEPS ===================== */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 30px 32px;
}
.step__num {
  flex: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 30px;
  width: 54px;
}
.step__num--peach {
  color: var(--peach);
}
.step__num--green {
  color: var(--lime);
}
.step__num--rust {
  color: var(--rust);
}
.step__title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.step__body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--taupe);
}
.badge-optional {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ===================== CONTACT ===================== */
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact .prose {
  margin-bottom: 32px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
}
.contact__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.contact__icon--peach {
  background: var(--peach);
}
.contact__icon--green {
  background: var(--lime);
}
.contact__label {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__value {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--card-border-2);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(91, 46, 22, 0.08);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: #faf6ee;
  border: 1.5px solid #ecdcc2;
  border-radius: 13px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form select {
  margin-bottom: 16px;
}
.contact-form textarea {
  resize: vertical;
  margin-bottom: 18px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form__submit {
  width: 100%;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--cream);
  background: var(--brown);
  border: none;
  border-radius: 13px;
  padding: 16px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(91, 46, 22, 0.22);
  transition: background 0.25s ease;
}
.contact-form__submit:hover {
  background: var(--green);
}
.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: default;
}
.contact-form__note {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #a98a72;
  text-align: center;
  margin-top: 14px;
}
.contact-form__note.is-success {
  color: var(--green);
}
.contact-form__note.is-error {
  color: #c0492b;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink-deep);
  color: #e0cdb6;
  padding: 70px 28px 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
}
.footer__tagline {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #bca58c;
  max-width: 280px;
}
.footer__heading {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #d8c4ad;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--lime);
}
.footer__bar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 176, 122, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bar span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #a98a72;
}

/* ===================== responsive ===================== */
@media (max-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .nav__inner {
    grid-template-columns: auto 1fr;
  }
  .nav__group--left {
    display: none;
  }
  .nav__group--right {
    gap: 18px;
    justify-content: end;
  }
  .nav__logo {
    justify-self: start;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 80px 22px;
  }
  .services {
    padding: 80px 22px;
  }
  .band {
    padding: 90px 22px;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form {
    padding: 26px;
  }
  .nav__group--right .nav__link:not(.nav__cta) {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* reduced motion: disable parallax + float animations */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-parallax] {
    transform: none !important;
  }
}
