/* ── FONTS ── */
@font-face {
  font-family: 'UberMove';
  src: url('fonts/UberMove-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'UberMove';
  src: url('fonts/UberMove-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Queens';
  src: url('fonts/QueensTrial-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #F25138;
  --orange:   #E79A40;
  --green:    #9ECC5F;
  --blue:     #82A8CD;
  --black:    #000000;
  --white:    #FFFFFF;
  --off-white:#F5F5F5;
  --grey:     #6B6B6B;
  --nav-h:    56px;
}

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

body {
  font-family: 'UberMove', sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2rem;
  background: var(--white);
  border-bottom: 1px solid #E8E8E8;
  position: relative;
  z-index: 10;
}

.navbar__logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* Fallback if logo.png not yet placed */
.navbar__logo:not(:has(img[src])) {
  font-family: 'UberMove', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.2;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__links a {
  font-family: 'UberMove', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  transition: color 0.15s;
}

.navbar__links a:hover {
  color: var(--red);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.15s;
}

.icon-btn:hover { color: var(--red); }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Very subtle dark vignette to make white text legible */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.22) 50%,
    rgba(0,0,0,0.10) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero__title {
  font-family: 'Queens', serif;
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero__sub {
  font-family: 'UberMove', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
  opacity: 0.92;
}

/* ── SEARCH OVERLAY ── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.search-overlay.is-open {
  display: flex;
}

.search-overlay__inner {
  background: var(--white);
  width: 100%;
  max-width: 640px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  margin: 0 1.5rem;
}

.search-overlay__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #E8E8E8;
  color: var(--grey);
}

.search-overlay__bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'UberMove', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background: transparent;
}

.search-overlay__bar input::placeholder { color: #AAAAAA; }

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey);
  display: flex;
  align-items: center;
  padding: 2px;
  transition: color 0.15s;
  flex-shrink: 0;
}
.search-close:hover { color: var(--red); }

.search-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.search-count {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  padding: 0.5rem 1.25rem 0.25rem;
}

.search-result-list {
  display: flex;
  flex-direction: column;
}

.search-result {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: var(--black);
  border-left: 3px solid transparent;
  transition: background 0.12s, border-color 0.12s;
}
.search-result:hover {
  background: #FFF5F3;
  border-left-color: var(--red);
}

.search-result__page {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
}

.search-result__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.search-result__desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
}

.search-result mark {
  background: #FFEAA0;
  color: var(--black);
  border-radius: 2px;
  padding: 0 1px;
}

.search-empty {
  font-size: 0.88rem;
  color: var(--grey);
  padding: 1.25rem;
  text-align: center;
}

/* ── PAGE PLACEHOLDER ── */
.page-placeholder {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.page-placeholder__inner {
  max-width: 560px;
  text-align: center;
}

.page-placeholder__label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
}

.page-placeholder__title {
  font-family: 'Queens', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.page-placeholder__body {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.placeholder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.placeholder-tags span {
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid #E0E0E0;
  color: var(--grey);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .navbar__links {
    display: none;
  }
  .navbar {
    padding: 0 1.25rem;
  }
}

/* ── SOLE SUPPLIER BANNER ── */
.sole-banner {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  padding: 0.85rem 2rem;
  text-align: center;
}
.sole-banner span {
  font-family: 'UberMove', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--black);
}

/* ── PRODUCTS SECTION ── */
.products {
  padding: 4rem 2rem 5rem;
  background: var(--white);
}

.products__title {
  font-family: 'Queens', serif;
  font-weight: 500;
  font-size: 2.25rem;
  text-align: center;
  color: var(--black);
  margin-bottom: 2.5rem;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PRODUCT CARD ── */
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.product-card__img-wrap {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.product-card__img-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.product-card__body {
  flex: 1;
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
}

.product-card__name {
  font-family: 'UberMove', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 1.1rem;
}

.product-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
}

.product-card__features li {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.4;
}

.product-card__cta {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  font-family: 'UberMove', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: opacity 0.15s;
}
.product-card__cta:hover { opacity: 0.88; }

.product-card__cta--orange { background: var(--orange); }
.product-card__cta--green  { background: var(--green); }
.product-card__cta--blue   { background: var(--blue); }

/* ── CONTACT SIDEBAR ── */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sidebar-backdrop.is-open {
  display: block;
}

.contact-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--white);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.contact-sidebar.is-open {
  transform: translateX(0);
}

.contact-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E8E8E8;
  flex-shrink: 0;
}

.contact-sidebar__title {
  font-family: 'Queens', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
}

.contact-sidebar__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.15s;
}
.contact-sidebar__close:hover { color: var(--red); }

.contact-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-sidebar__intro {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

.contact-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}

.contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--grey);
}

.contact-item__value {
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: none;
}
a.contact-item__value:hover { color: var(--red); }

/* ── MOBILE SIDEBAR ── */
@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .contact-sidebar {
    width: 100vw;
    top: 0;
    left: 0;
    transform: translateY(100%);
  }
  .contact-sidebar.is-open {
    transform: translateY(0);
  }
  .contact-sidebar__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off-white);
  }
}

/* ── HOW TO USE ── */
.how-to {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100dvh;
  min-height: 500px;
  max-height: 900px;
  background: var(--white);
}

.how-to__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 4rem 4rem;
}

.how-to__img-wrap img {
  width: 100%;
  max-width: 520px;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

.how-to__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem 4rem 4rem;
}

.how-to__title {
  font-family: 'Queens', serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.how-to__steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
}

.how-to__steps li {
  counter-increment: steps;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: 'UberMove', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.5;
}

.how-to__steps li::before {
  content: counter(steps) ".";
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  min-width: 1.2rem;
}

@media (max-width: 768px) {
  .how-to {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .how-to__img-wrap {
    padding: 3rem 2rem 1.5rem;
  }
  .how-to__img-wrap img {
    max-height: 320px;
  }
  .how-to__content {
    padding: 1.5rem 2rem 3rem;
  }
  .how-to__title {
    font-size: 1.75rem;
  }
}
/* ── WHY YOGOURMET ── */
.why {
  padding: 5rem 4rem;
  background: var(--white);
  text-align: center;
}

.why__title {
  font-family: 'Queens', serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--black);
  margin-bottom: 4rem;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why__col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.why__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.why__col--left .why__feature { text-align: center; }
.why__col--right .why__feature { text-align: center; }

.why__icon {
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.why__feature-name {
  font-family: 'UberMove', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--black);
}

.why__feature-desc {
  font-family: 'UberMove', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.65;
  max-width: 300px;
}

.why__img-wrap {
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .why {
    padding: 4rem 2rem;
  }
  .why__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why__img-wrap {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    order: -1;
  }
  .why__col {
    gap: 3rem;
  }
  .why__feature {
    padding: 0 1rem;
  }
}

/* ── TESTIMONIAL ── */
.testimonial {
  margin: 0 4rem;
  padding: 4rem 6rem;
  border: 1px solid #E8E8E8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.testimonial__quote {
  font-family: 'UberMove', sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 860px;
}

.testimonial__source {
  font-family: 'UberMove', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--black);
  font-style: normal;
}

@media (max-width: 768px) {
  .testimonial {
    margin: 0 1.5rem;
    padding: 3rem 2rem;
  }
}

/* ── FAQ ── */
.faq {
  padding: 5rem 0;
  background: var(--white);
  margin: 0 4rem;
}

.faq__title {
  font-family: 'Queens', serif;
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
}

.faq__list {
  border-top: 1px solid #E8E8E8;
}

.faq__item {
  border-bottom: 1px solid #E8E8E8;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  gap: 2rem;
  text-align: left;
}

.faq__question span {
  font-family: 'UberMove', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.4;
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--black);
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  padding: 0 0 1.75rem;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__answer p {
  font-family: 'UberMove', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 760px;
}

@media (max-width: 768px) {
  .faq {
    padding: 3rem 0;
    margin: 0 1.5rem;
  }
  .testimonial {
    margin: 0 1.5rem;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0;
  align-items: start;
  padding: 4rem;
}

.footer__logo-wrap {
  display: flex;
  align-items: flex-start;
  padding-right: 4rem;
}

.footer__logo-wrap img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 0 4rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  flex: 1;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}

.footer__col a {
  font-family: 'UberMove', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--red); }

.footer__scroll-top {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-left: 3rem;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.footer__scroll-top:hover { border-color: var(--white); color: var(--red); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.15s;
}
.footer__bottom-links a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  .footer__divider { display: none; }
  .footer__logo-wrap { padding-right: 0; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__scroll-top { margin-left: 0; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .footer__bottom-links { flex-wrap: wrap; gap: 1rem; }
}