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

:root {
  --cream: #fdfbf7;
  --beige: #e9e1d3;
  --sage: #dfe7d8;
  --green: #26352d;
  --soft-green: #617565;
  --light-text: #68736b;
  --white: #ffffff;
}

body {
  background: var(--cream);
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* NAVIGATION */

.navbar {
  background: var(--cream);
  border-bottom: 1px solid #e5e0d7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--green);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--soft-green);
}

/* PAGE SYSTEM */

.page {
  display: none;
}

.page.active {
  display: block;
}

/* HOME */

.hero-home {
  text-align: center;
  padding: 90px 30px 80px;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.eyebrow {
  color: var(--soft-green);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 8vw, 100px);
  font-weight: normal;
  line-height: .95;
  margin-bottom: 30px;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--light-text);
  font-size: 18px;
}

/* VIDEO */

.hero-video {
  max-width: 1200px;
  margin: 60px auto 0;
}

.plena-video {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
  border-radius: 25px;
  background: var(--sage);
}

/* BUTTON */

.btn {
  padding: 14px 27px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
}

.btn-dark {
  background: var(--green);
  color: white;
}

.btn-dark:hover {
  opacity: .85;
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;
}

.text-center {
  text-align: center;
}

/* HEADINGS */

.center-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 15px;
}

.section-description,
.subtitle {
  color: var(--light-text);
}

/* WHY PLENA */

.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  border: 1px solid #e5e0d7;
  border-radius: 18px;
  padding: 30px;
}

.feature-card span {
  font-size: 30px;
  display: block;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--light-text);
  font-size: 14px;
}

/* TWO WAYS */

.ways-section {
  background: var(--beige);
}

.two-ways-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.preview-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.preview-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.preview-text {
  padding: 28px;
}

.preview-text h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
}

.preview-text p {
  color: var(--light-text);
  margin-bottom: 15px;
}

.text-button {
  border: none;
  background: none;
  color: var(--green);
  font-weight: bold;
  cursor: pointer;
}

/* STORY */

.subpage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.content-text h2 {
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 25px;
}

.content-text p {
  color: var(--light-text);
  margin-bottom: 20px;
}

.full-rounded {
  width: 100%;
  border-radius: 25px;
}

.story-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.pillar-card {
  background: white;
  border: 1px solid #e5e0d7;
  border-radius: 18px;
  overflow: hidden;
}

.pillar-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pillar-card h4 {
  padding: 20px;
}

/* PRODUCTS */

.page-headline {
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: normal;
  margin-bottom: 15px;
}

.hero-pack-img {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  margin: 30px auto 40px;
  display: block;
}

.product-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  text-align: left;
}

.product-choice-card {
  background: white;
  border: 1px solid #e5e0d7;
  padding: 35px;
  border-radius: 20px;
}

.product-choice-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
}

.product-choice-card p {
  color: var(--light-text);
  margin-bottom: 20px;
}

.product-features-banner {
  background: var(--sage);
  padding: 20px;
  margin-top: 30px;
  border-radius: 15px;
}

/* NUTRITION */

.nutrition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.nutrition-left h2 {
  font-family: Georgia, serif;
  font-size: 55px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 35px;
}

.nutrition-point {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.nutrition-point span {
  font-size: 25px;
}

.nutrition-point strong {
  display: block;
  margin-bottom: 4px;
}

.nutrition-point p {
  color: var(--light-text);
}

.facts-panel {
  background: white;
  border: 1px solid #e5e0d7;
  border-radius: 20px;
  overflow: hidden;
}

.facts-panel img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.nutrition-table {
  padding: 30px;
}

.nutrition-table h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* CONTACT */

.contact-section-box {
  max-width: 700px;
  margin: auto;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.styled-form input,
.styled-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd8ce;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
}

/* LEGAL PAGES */

.legal-page {
  max-width: 800px;
}

.legal-content {
  margin-top: 30px;
}

.legal-content h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  margin: 30px 0 10px;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--light-text);
  margin-bottom: 10px;
}

.legal-content button {
  margin-top: 20px;
}

/* BLOG */

.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: white;
  border: 1px solid #e5e0d7;
  border-radius: 18px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-info {
  padding: 25px;
}

.blog-info h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 10px;
}

.blog-info p {
  color: var(--light-text);
  margin-bottom: 20px;
}

/* NEWS */

.news-list {
  max-width: 800px;
  margin: auto;
}

.news-item {
  background: white;
  border: 1px solid #e5e0d7;
  padding: 30px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.news-date {
  color: var(--soft-green);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
}

.news-item h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: normal;
  margin: 8px 0;
}

.news-item p {
  color: var(--light-text);
}

/* FOOTER */

.site-footer {
  background: var(--green);
  color: white;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 65px 30px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-brand p,
.footer-newsletter p {
  color: #d5ddd7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4,
.footer-newsletter h4 {
  margin-bottom: 10px;
}

.footer-column a {
  color: #d5ddd7;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: white;
}

.footer-form {
  display: flex;
  margin-top: 15px;
}

.footer-form input {
  padding: 12px;
  border: none;
  border-radius: 8px 0 0 8px;
  flex: 1;
}

.footer-form button {
  padding: 12px 18px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: var(--sage);
  color: var(--green);
  font-weight: bold;
  cursor: pointer;
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 20px 30px;

  border-top: 1px solid #4d5b51;

  display: flex;
  justify-content: space-between;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #d5ddd7;
  text-decoration: none;
}

/* MOBILE */

@media (max-width: 800px) {

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-content h1 {
    font-size: 55px;
  }

  .plena-video {
    height: 400px;
  }

  .feature-grid-4,
  .two-ways-preview,
  .subpage-split,
  .story-pillars-grid,
  .product-cards-row,
  .nutrition-layout,
  .blog-grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
/* =========================
   SOFT ANIMATED VINES
========================= */

.vine {
  position: fixed;
  top: 0;
  width: 80px;
  height: 200vh;

  background-image: url("https://images.unsplash.com/photo-1524593166156-312f362cada0?auto=format&fit=crop&w=600&q=80");

  background-size: contain;
  background-repeat: repeat-y;

  pointer-events: none;
  z-index: 5;

  opacity: 0.12;

  animation: vineFloat 35s linear infinite;
}

/* LEFT VINE */
.vine-left {
  left: 0;
}

/* RIGHT VINE */
.vine-right {
  right: 0;

  animation-name: vineFloatRight;
  animation-delay: 8s;
}

/* LEFT VINE ANIMATION */
@keyframes vineFloat {

  0% {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 0.12;
  }

  50% {
    transform: translateY(-250px);
    opacity: 0.18;
  }

  80% {
    opacity: 0.12;
  }

  100% {
    transform: translateY(-500px);
    opacity: 0;
  }

}

/* RIGHT VINE ANIMATION */
@keyframes vineFloatRight {

  0% {
    transform: scaleX(-1) translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 0.12;
  }

  50% {
    transform: scaleX(-1) translateY(-250px);
    opacity: 0.18;
  }

  80% {
    opacity: 0.12;
  }

  100% {
    transform: scaleX(-1) translateY(-500px);
    opacity: 0;
  }

}