﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Manrope:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap");

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
}

:root {
  --bg: #f6f0e4;
  --surface: rgba(255, 252, 246, 0.78);
  --surface-strong: #fffaf1;
  --ink: #1f251d;
  --muted: #5c6557;
  --line: rgba(37, 57, 43, 0.12);
  --primary: #194d7a;
  --accent: #6a8540;
  --shadow: 0 18px 40px rgba(24, 33, 24, 0.12);
  --transition: transform 0.25s ease, box-shadow 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(106, 133, 64, 0.18), transparent 24%),
    radial-gradient(circle at right, rgba(25, 77, 122, 0.1), transparent 22%),
    linear-gradient(180deg, #f9f4ea 0%, var(--bg) 100%);
}

/* SECTION */
.about-section {
  padding: 80px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE SIDE */
.about-image {
  position: relative;
}

.image-box {
  background: var(--accent);
  border-radius: 25px;
  height: 350px;
  overflow: hidden;
}

.about-image-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

/* BADGE */
.badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #f47c20;
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge h2 {
  font-size: 28px;
  margin: 0;
}

.badge span {
  font-size: 12px;
}

/* CONTENT */
.about-content .tag {
  color: #f47c20;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
}

.about-content h2 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.about-content h2 span {
  color: var(--accent);
}

.about-content .desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-top: 20px;
}

.features div {
  font-size: 14px;
  color: var(--ink);
}

.features span {
  color: var(--accent);
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .badge {
    right: 10px;
  }
}
/* =========================
FARM STORY SECTION
========================= */

.farm-story {
  background: var(--bg);
  padding: 80px 5%;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* HERO */
.farm-hero {
  position: relative;
  min-height: 660px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(120deg, rgba(13, 30, 18, 0.28), rgba(13, 30, 18, 0.08)),
    url("assets/images/about-highlight.jpg") center 35% / cover no-repeat;
  box-shadow: var(--shadow);
}

.farm-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.5)
  );
}

.farm-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 56px 56px;
  color: #fff;
  max-width: 600px;
  font-family: 'Manrope', sans-serif;
}

.farm-hero__tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.farm-hero__content h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 14px;
}

.farm-hero__content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}
/* =========================
MISSION & VISION
========================= */

.mission-vision {
  padding: 80px 5%;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(208, 122, 43, 0.12), transparent 26%),
    radial-gradient(circle at right center, rgba(25, 77, 122, 0.08), transparent 24%),
    var(--bg);
  overflow: hidden;
}

.mv-header {
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.mv-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(106, 133, 64, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mv-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
}

.mv-header p {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.75;
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  position: relative;
  padding: 42px 38px 38px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(255, 248, 239, 0.82));
  border: 1px solid rgba(37, 57, 43, 0.08);
  box-shadow: 0 22px 44px rgba(24, 33, 24, 0.1);
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), #d7a14f, var(--primary));
}

.mv-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 133, 64, 0.14), transparent 68%);
  pointer-events: none;
}

.mv-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mv-card h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--ink);
}

.mv-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 34ch;
}

@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mv-header {
    margin-bottom: 28px;
  }

  .mv-card {
    padding: 34px 28px 30px;
    border-radius: 22px;
  }
}


/* GRID */
.farm-grid {
  display: grid;
  width: calc(100% + 12vw);
  margin-left: -6vw;
  gap: 28px;
}

.farm-grid-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  transform: translateX(0);
  transition: transform 1.35s ease;
  will-change: transform;
}

.farm-story.is-visible .farm-grid-row-top {
  transform: translateX(34px);
}

.farm-story.is-visible .farm-grid-row-bottom {
  transform: translateX(-34px);
}

.farm-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 1.35s ease;
}

@media (max-width: 900px) {
  .farm-hero {
    min-height: 560px;
    border-radius: 0;
  }

  .farm-hero__content {
    padding: 0 28px 32px;
    max-width: none;
  }

  .farm-grid {
    width: calc(100% + 16vw);
    margin-left: -8vw;
    gap: 18px;
  }

  .farm-grid-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .farm-grid img {
    height: 180px;
  }

  .farm-story.is-visible .farm-grid-row-top {
    transform: translateX(22px);
  }

  .farm-story.is-visible .farm-grid-row-bottom {
    transform: translateX(-22px);
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contact-container > * {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .farm-hero {
    min-height: 460px;
    border-radius: 0;
  }

  .farm-hero__content {
    padding: 0 20px 24px;
  }

  .farm-hero__content h1 {
    font-size: 40px;
  }

  .farm-hero__content p {
    font-size: 16px;
  }

  .farm-grid {
    width: calc(100% + 22vw);
    margin-left: -11vw;
    gap: 12px;
  }

  .farm-grid-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .farm-grid img {
    height: 145px;
  }

  .farm-story.is-visible .farm-grid-row-top {
    transform: translateX(16px);
  }

  .farm-story.is-visible .farm-grid-row-bottom {
    transform: translateX(-16px);
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-container > * {
    width: 100%;
  }
}

/* =========================
TESTIMONIALS
========================= */

.testimonials {
  padding: 80px 5%;
  background: var(--surface-strong);
}

/* Header */
.section-header {
  margin-bottom: 50px;
}

.section-header .tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: var(--ink);
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.testimonial-card {
  padding: 0 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.testimonial-card + .testimonial-card {
  border-left: 1px solid var(--line);
}

.testimonial-card p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

/* Author */
.author h4 {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}

.author span {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 0;
  }

  .testimonial-card + .testimonial-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
}
/* =========================
CONTACT SECTION
========================= */

.contact {
  padding: 80px 5%;
  background: var(--accent); /* green section like your design */
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(25, 77, 122, 0.2), transparent 34%);
  pointer-events: none;
  z-index: -1;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* LEFT SIDE */
.contact-info .tag {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact-info h2 {
  font-size: 40px;
  margin: 10px 0 20px;
}

.contact-info p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
}

/* FORM */
.contact-form {
  background: var(--surface-strong);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(16, 64, 96, 0.1);
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  outline: none;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(92, 101, 87, 0.88);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(25, 77, 122, 0.12);
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* BUTTON */
.contact-form button {
  background: var(--primary);
  color: #fff;
  padding: 15px 18px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  align-self: flex-start;
  min-width: 180px;
  transition: var(--transition), background 0.2s ease;
}

.contact-form button:hover {
  background: #143a5c;
}

@media (max-width: 900px) {
  .contact {
    padding: 64px 24px;
    border-radius: 28px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info {
    max-width: 42rem;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .contact {
    padding: 48px 16px;
    border-radius: 24px;
  }

  .contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .contact-info p {
    margin-bottom: 18px;
  }

  .info-item {
    margin-bottom: 14px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 20px;
    gap: 14px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-form button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}



.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  --cream-1: #f7f2ea;
  --cream-2: #efe6d8;
  --ink: #2f2f2b;
  --slate: #5b5b55;
  --brand-blue: #104060;
  --brand-blue-dark: #0b2f4a;
  --brand-olive: #607040;
  --brand-rust: #a05030;
  --brand-orange: #d07a2b;
  --line: rgba(16, 64, 96, 0.2);
  --shadow: 0 18px 40px rgba(16, 64, 96, 0.15);
  position: relative;
  padding: 96px 24px 36px;
  font-family: "Work Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background-color: var(--cream-1);
  background-image: url("footer.jpeg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  animation: footer-reveal 0.9s ease forwards;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(60px, 8vw, 110px);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path fill='%23f7f2ea' d='M0,64 C180,120 360,120 540,64 C720,8 900,8 1080,64 C1260,120 1440,120 1440,120 L1440,0 L0,0 Z'/></svg>");
  background-repeat: repeat-x;
  background-size: 1200px 100%;
  z-index: 1;
  pointer-events: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.98) 0%, rgba(247, 242, 234, 0.92) 45%, rgba(247, 242, 234, 0.65) 70%, rgba(247, 242, 234, 0.35) 100%),
    radial-gradient(circle at 12% 20%, rgba(208, 122, 43, 0.18), transparent 48%),
    radial-gradient(circle at 88% 12%, rgba(96, 112, 64, 0.22), transparent 45%);
  background-size: 100% 100%, 200% 200%, 200% 200%;
  background-position: center, 0% 0%, 100% 0%;
  animation: gradient-drift 18s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  background: url("logo.png") no-repeat center / contain;
  opacity: 0.06;
  filter: saturate(0.8);
  pointer-events: none;
  z-index: 0;
}

@keyframes footer-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient-drift {
  0% {
    background-position: center, 0% 0%, 100% 0%;
  }
  50% {
    background-position: center, 100% 30%, 0% 60%;
  }
  100% {
    background-position: center, 0% 0%, 100% 0%;
  }
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 32px;
  align-items: start;
}

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

.footer-brand .brand-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0;
  color: var(--brand-blue);
}

.brand-subtitle {
  margin: 0;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-olive);
}

.brand-copy {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.brand-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(16, 64, 96, 0.12);
  box-shadow: 0 10px 22px rgba(16, 64, 96, 0.08);
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-label {
  font-weight: 600;
  color: var(--brand-blue);
}

.cta-desc {
  font-size: 13px;
  color: var(--slate);
}

.cta-button {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-rust), var(--brand-orange));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 10px 18px rgba(160, 80, 48, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(160, 80, 48, 0.3);
}

.footer-col h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--brand-blue-dark);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.footer-col a:hover {
  color: var(--brand-rust);
  letter-spacing: 0.3px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--slate);
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(96, 112, 64, 0.25);
  color: var(--brand-blue);
  box-shadow: 0 8px 16px rgba(16, 64, 96, 0.12);
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: var(--brand-blue);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social img {
  width: 18px;
  height: 18px;
  display: block;
}

.social a:hover {
  transform: translateY(-2px);
  background: var(--brand-olive);
}

.footer-divider {
  margin: 36px 0 20px;
  height: 1px;
  background: var(--line);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--slate);
}

.footer-credit a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--brand-rust);
}

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

.footer-legal a {
  color: var(--brand-blue);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--brand-rust);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .brand-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 961px) {
  .footer-links {
    margin-top: 0;
  }

  .footer-support {
    margin-top: 28px;
  }

  .footer-contact {
    margin-top: 56px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 84px;
  }

  .footer-wave {
    background-size: 900px 100%;
  }

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

  .footer-brand .brand-logo {
    width: 110px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
