* {
  box-sizing: border-box;
}

:root {
  --accent: #8aa67a;
  --accent-dark: #6f8f61;
  --muted: #7c7c7c;
  --card-bg: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
}


/* ==============================
   BASE
   ============================== */

html,
body {
  margin: 0;
  min-height: 100%;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #111;
  background: #fbfbfb;

  font-size: 16px;
  line-height: 1.62;
}

body {
  overflow-x: hidden;
}


/* ==============================
   HEADER
   ============================== */

.main-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  height: 90px;

  z-index: 20;

  display: flex;
  align-items: center;

  padding: 0 32px;

  background: rgba(255, 255, 255, 0.95);
}


/* ==============================
   LOGO
   ============================== */

.logo-holder {
  display: block;

  flex-shrink: 0;
}

.logo-holder img {
  display: block;

  max-height: 90px;

  width: auto;
}


/* ==============================
   MAIN MENU
   ============================== */

.main-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
}

.main-menu > ul {
  display: flex;

  align-items: center;

  gap: 28px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.main-menu > ul > li {
  list-style: none;
}

.main-menu a {
  color: #111;

  text-decoration: none;

  font-size: 0.95rem;

  letter-spacing: 0.06em;

  white-space: nowrap;
}

.main-menu a:hover {
  color: var(--accent-dark);
}


/* ==============================
   PREFERRED VENDORS
   ============================== */

.accordion-item {
  position: relative;
}

.accordion-button {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0;
  margin: 0;

  background: transparent;

  border: none;

  color: #111;

  font-family: inherit;

  font-size: 0.95rem;

  letter-spacing: 0.06em;

  cursor: pointer;

  white-space: nowrap;
}

.accordion-button:hover {
  color: var(--accent-dark);
}

.accordion-icon {
  font-size: 16px;

  line-height: 1;

  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}


/* ==============================
   PREFERRED VENDORS DROPDOWN
   ============================== */

.main-menu .accordion-menu {
  display: none;

  position: absolute;

  top: calc(100% + 15px);

  right: 0;

  min-width: 190px;

  margin: 0;
  padding: 12px 0;

  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.08);

  flex-direction: column;

  gap: 0;

  list-style: none;
}

.main-menu .accordion-item.open > .accordion-menu {
  display: flex;
}

.accordion-menu li {
  width: 100%;

  list-style: none;
}

.accordion-menu a {
  display: block;

  width: 100%;

  padding: 9px 18px;

  font-size: 0.88rem;

  letter-spacing: 0.04em;
}

.accordion-menu a:hover {
  background: rgba(138, 166, 122, 0.08);
}


/* ==============================
   SOCIAL LINKS
   ============================== */

.social-links {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-left: 28px;

  padding: 0;

  list-style: none;

  flex-shrink: 0;
}

/* ==============================
   FOOTER
   ============================== */

.site-footer {
  padding: 28px 20px 40px;
  background: #f4f2ef;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #333;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-footer .footer-content p {
  margin: 6px 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-dark);
}


/* ==============================
   SOCIAL BUTTON
   ============================== */

.social-button {
  width: 30px;
  height: 30px;

  display: flex !important;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(17, 17, 17, 0.22);

  border-radius: 50%;

  color: #111;

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-button svg {
  width: 15px;
  height: 15px;

  display: block;
}


/* ==============================
   TIKTOK
   ============================== */

.social-button.tiktok svg {
  fill: currentColor;

  stroke: none;
}


/* ==============================
   GOOGLE
   ============================== */

.social-button.google svg {
  fill: currentColor;

  stroke: none;
}


/* ==============================
   INSTAGRAM
   ============================== */

.social-button.instagram img {
  width: 15px;
  height: 15px;

  display: block;

  object-fit: contain;
}


/* ==============================
   SOCIAL HOVER
   ============================== */

.social-button:hover {
  background: var(--accent);

  border-color: var(--accent);

  color: #fff;

  transform: translateY(-2px);

  box-shadow:
    0 6px 18px rgba(138, 166, 122, 0.22);
}


/* ==============================
   MOBILE MENU BUTTON
   ============================== */

.nav-button {
  display: none;

  flex-direction: column;

  justify-content: space-between;

  width: 22px;
  height: 20px;

  background: transparent;

  border: none;

  padding: 0;

  cursor: pointer;

  flex-shrink: 0;
}

.nav-button span {
  display: block;

  width: 100%;
  height: 2px;

  border-radius: 1px;

  background: #111;
}


/* ==============================
   HERO
   ============================== */

.hero {
  position: relative;

  min-height: calc(100vh - 90px);

  margin-top: 90px;

  overflow: hidden;
}

.hero-slider {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.slider-track {
  display: flex;

  align-items: center;

  height: 100%;

  gap: 24px;

  padding: 24px 0 34px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  cursor: grab;

  touch-action: pan-x;
}

.slider-track.dragging {
  cursor: grabbing;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;

  width: 100%;

  max-width: 860px;

  height: 100%;

  position: relative;

  scroll-snap-align: center;

  overflow: hidden;
}

.slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.slide-credit {
  position: absolute;

  right: 16px;
  bottom: 14px;

  padding: 4px 8px;

  border-radius: 999px;

  background: rgba(17, 17, 17, 0.42);

  border: 1px solid rgba(255, 255, 255, 0.22);

  color: rgba(255, 255, 255, 0.9);

  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  line-height: 1.2;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  z-index: 2;
  pointer-events: none;
}


/* ==============================
   BUTTONS
   ============================== */

.btn.fl-btn {
  background: var(--accent);

  color: #fff;

  box-shadow:
    0 8px 28px rgba(138, 166, 122, 0.16);
}

.btn.fl-btn:hover,
.btn.fl-btn:focus-visible {
  transform: translateY(-2px);

  background: var(--accent-dark);
}


/* ==============================
   HELPERS
   ============================== */

.muted {
  color: var(--muted);
}


/* ==============================
   TYPOGRAPHY
   ============================== */

h1 {
  font-size: 2.2rem;

  line-height: 1.05;

  font-weight: 700;

  margin: 0 0 12px;
}

h2 {
  font-size: 1.6rem;

  line-height: 1.08;

  font-weight: 700;

  margin: 0 0 10px;
}

h3 {
  font-size: 1.125rem;

  line-height: 1.25;

  font-weight: 700;

  margin: 0 0 8px;
}

h4 {
  font-size: 0.95rem;

  font-weight: 600;

  margin: 0 0 8px;

  color: var(--muted);
}


/* ==============================
   SECTION TITLE
   ============================== */

.section-title.fl-wrap {
  border-bottom: none;

  padding-bottom: 0;

  margin-bottom: 18px;
}

.section-title.fl-wrap h3 {
  font-size: 1.35rem;

  text-transform: none;
}

.section-title.fl-wrap h3::after {
  content: '';

  display: block;

  width: 64px;
  height: 4px;

  background: var(--accent);

  margin-top: 8px;

  border-radius: 2px;
}


/* ==============================
   POST CARDS
   ============================== */

.post.fl-wrap.fw-post {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.post.fl-wrap.fw-post:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);
}


/* ==============================
   HERO OVERLAY
   ============================== */

.hero-overlay {
  position: absolute;

  right: clamp(24px, 4vw, 60px);

  top: 28%;

  width: clamp(280px, 30vw, 420px);

  min-height: clamp(320px, 48vh, 520px);

  background: rgba(255, 255, 255, 0.18);

  border: 1px solid rgba(255, 255, 255, 0.24);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(24px);

  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.20);

  border-radius: 40px;

  overflow: hidden;

  pointer-events: none;

  z-index: 10;
}

.hero-overlay::before {
  content: '';

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.08)
    );

  pointer-events: none;
}


/* ==============================
   MOBILE
   ============================== */

@media (max-width: 860px) {

  .main-header {

    padding: 0 24px;

    gap: 0;
  }


  /* ==============================
     LOGO
     ============================== */

  .logo-holder {

    order: 1;

    margin-right: auto;
  }


  /* ==============================
     SOCIALS
     ============================== */

  .social-links {

    order: 2;

    margin-left: auto;

    margin-right: 18px;

    gap: 10px;
  }

  .social-button {

    width: 34px;
    height: 34px;
  }

  .social-button svg {

    width: 16px;
    height: 16px;
  }

  .social-button.instagram img {

    width: 16px;
    height: 16px;
  }


  /* ==============================
     HAMBURGER
     ============================== */

  .nav-button {

    order: 3;

    display: inline-flex;
  }


  /* ==============================
     HIDE DESKTOP MENU
     ============================== */

  .main-menu {

    display: none;

    margin: 0;
  }


  /* ==============================
     OPEN MOBILE MENU
     ============================== */

  .main-menu.open {

    display: flex;

    position: fixed;

    inset: 90px 0 0;

    justify-content: center;

    align-items: center;

    background: rgba(255, 255, 255, 0.98);

    padding: 40px 24px;

    overflow-y: auto;
  }


  .main-menu.open > ul {

    flex-direction: column;

    gap: 18px;

    width: 100%;

    text-align: center;
  }


  /* ==============================
     ACCORDION MOBILE
     ============================== */

  .accordion-button {

    font-size: 0.95rem;

    justify-content: center;
  }

  .main-menu .accordion-menu {

    position: static;

    width: 100%;

    min-width: 0;

    margin-top: 10px;

    padding: 5px 0;

    background: transparent;

    box-shadow: none;

    text-align: center;
  }

  .accordion-menu a {

    padding: 6px 0;
  }

}


/* ==============================
   SMALL MOBILE
   ============================== */

@media (max-width: 680px) {

  .hero-overlay {

    display: none;
  }

}


/* ==============================
   VERY SMALL SCREENS
   ============================== */

@media (max-width: 420px) {

  .main-header {

    padding: 0 16px;
  }

  .social-links {

    margin-right: 14px;

    gap: 7px;
  }

  .social-button {

    width: 31px;
    height: 31px;
  }

  .social-button svg {

    width: 14px;
    height: 14px;
  }

  .social-button.instagram img {

    width: 14px;
    height: 14px;
  }

  .nav-button {

    width: 21px;
    height: 19px;
  }

}

/* ==============================
   MOBILE SLIDER - PEEK EFFECT
   ============================== */

@media (max-width: 860px) {

  .slider-track {
    gap: 14px;

    padding: 20px 7% 30px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;
  }

  .slide {
    flex: 0 0 86%;

    width: 86%;

    max-width: none;

    height: 100%;

    scroll-snap-align: center;
  }

}