/* Verdant Acre — agricultural landing */

:root {
  --forest: #1c3a28;
  --forest-deep: #12261a;
  --leaf: #3d6b4f;
  --wheat: #c4a35a;
  --wheat-light: #e8d9a8;
  --cream: #eef2ea;
  --mist: #d8e0d4;
  --ink: #1a241c;
  --muted: #4a5c50;
  --white: #f7faf5;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 4vw, 3rem);
  --max: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(61, 107, 79, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(196, 163, 90, 0.15), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--mist) 45%, var(--cream) 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--space);
  max-width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0.95;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(18, 38, 26, 0.35) 0%,
      rgba(18, 38, 26, 0.15) 35%,
      rgba(18, 38, 26, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--space) * 1.5) var(--space) calc(var(--space) * 2);
  max-width: 40rem;
  color: var(--white);
  animation: rise-in 1s ease-out both;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 22ch;
  margin-bottom: 0.85rem;
  color: var(--wheat-light);
}

.lede {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  max-width: 36ch;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise-in 1s ease-out 0.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--wheat);
  color: var(--forest-deep);
  border-color: var(--wheat);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--wheat-light);
  border-color: var(--wheat-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(247, 250, 245, 0.45);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(247, 250, 245, 0.08);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(70vh, 36rem);
  max-width: 100%;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--space) * 1.75) var(--space);
  background: var(--forest);
  color: var(--cream);
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--wheat-light);
}

.about-copy p {
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 32ch;
  opacity: 0.9;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-visual {
  background:
    url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1400&q=80")
      center / cover no-repeat;
  min-height: 16rem;
  animation: fade-up 0.9s ease-out both;
}

/* Produce */
.produce {
  padding: calc(var(--space) * 2) var(--space);
  max-width: var(--max);
  margin: 0 auto;
}

.section-intro {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 36rem;
}

.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.produce-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(28, 58, 40, 0.18);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
}

.produce-list li {
  animation: fade-up 0.7s ease-out both;
}

.produce-list li:nth-child(2) {
  animation-delay: 0.12s;
}

.produce-list li:nth-child(3) {
  animation-delay: 0.24s;
}

.produce-list h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.produce-list p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
  max-width: 28ch;
}

/* ΓΕΜΗ / Εταιρικά στοιχεία */
.gemi {
  padding: calc(var(--space) * 2) var(--space);
  max-width: var(--max);
  margin: 0 auto;
  scroll-margin-top: 1rem;
}

.gemi-intro {
  max-width: 42rem;
}

.gemi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(28, 58, 40, 0.18);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
}

.gemi-block {
  min-width: 0;
}

.gemi-block--wide {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(28, 58, 40, 0.12);
}

.gemi-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.gemi-dl {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.gemi-dl > div {
  display: grid;
  gap: 0.25rem;
}

.gemi-dl dt {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf);
}

.gemi-dl dd {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.55;
}

.gemi-dl a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.gemi-dl a:hover,
.gemi-dl a:focus-visible {
  color: var(--forest);
}

.kad-list,
.plain-list,
.partners-list,
.docs-list {
  list-style: none;
}

.kad-list li,
.partners-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(28, 58, 40, 0.1);
  font-size: 0.95rem;
}

.kad-list li:last-child,
.partners-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.partners-list li + li {
  margin-top: 0.35rem;
}

.docs-lead {
  margin: 1.25rem 0 0.85rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 36rem;
}

.docs-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(28, 58, 40, 0.15);
  font-weight: 400;
  color: var(--forest);
  transition: color 0.2s ease;
}

.docs-list a:hover,
.docs-list a:focus-visible {
  color: var(--leaf);
}

.docs-meta {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.docs-note {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.docs-note code {
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  background: rgba(28, 58, 40, 0.08);
  border-radius: 2px;
}

.legal-highlight {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.1rem, 3vw, 1.5rem);
  border-left: 3px solid var(--leaf);
  background: rgba(28, 58, 40, 0.06);
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
}

.emphasis {
  font-weight: 500;
  color: var(--forest);
}

.field-hint {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--forest);
}

/* Contact */
.contact {
  margin-top: var(--space);
  padding: 0 var(--space) calc(var(--space) * 2);
}

.contact-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(28, 58, 40, 0.92), rgba(18, 38, 26, 0.88)),
    url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
  color: var(--cream);
  text-align: center;
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--wheat-light);
}

.contact-inner > p {
  font-weight: 300;
  max-width: 36ch;
  margin: 0 auto 1.75rem;
  opacity: 0.9;
}

.contact-inner .btn {
  margin-bottom: 1.75rem;
}

.contact-inner address {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.7;
}

/* Footer — mandatory I.K.Ε. publicity line */
.site-footer {
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--space) 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  background: rgba(28, 58, 40, 0.05);
  border-top: 1px solid rgba(28, 58, 40, 0.12);
}

.legal-line {
  max-width: 52rem;
  margin: 0 auto 1rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  text-align: left;
}

.footer-meta {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Motion */
@keyframes hero-drift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1.5%, -0.8%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-content,
  .cta-group,
  .about-visual,
  .produce-list li {
    animation: none;
  }

  .hero-media {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

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

  .about-visual {
    min-height: 14rem;
    order: -1;
  }

  .produce-list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
  }

  .hero-content {
    padding-bottom: calc(var(--space) * 1.5);
  }
}
