:root {
  --bg: #f4f0e6;
  --surface: rgba(250, 247, 240, 0.82);
  --text: #253327;
  --muted: #4c5f4f;
  --accent: #6f8d4a;
  --accent-soft: #d7e2c6;
  --border: rgba(69, 90, 67, 0.2);
  --shadow: 0 16px 42px rgba(49, 63, 46, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Work Sans", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 20%, #e8efde 0%, transparent 40%),
    radial-gradient(circle at 92% 12%, #dde7d0 0%, transparent 35%),
    linear-gradient(160deg, #f6f3ea 0%, #eef3e8 46%, #f4efe4 100%);
  position: relative;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 58% 42% 61% 39% / 43% 59% 41% 57%;
  filter: blur(2px);
  opacity: 0.28;
  z-index: -1;
  pointer-events: none;
  animation: float 16s ease-in-out infinite alternate;
}

.ambient--one {
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle at 30% 30%, #95ad72, #c8d8ae 65%, transparent 100%);
}

.ambient--two {
  bottom: -11rem;
  left: -14rem;
  background: radial-gradient(circle at 45% 40%, #a7be84, #d5e0be 70%, transparent 100%);
  animation-delay: 1.6s;
}

.site-header,
main {
  width: min(68rem, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 2.8rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0;
}

.brand img {
  display: block;
  width: clamp(10.5rem, 19vw, 13.5rem);
  height: auto;
}

.role {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

main {
  padding-bottom: 4rem;
}

.section {
  margin: 0 0 1.6rem;
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
  animation: rise 0.7s ease-out both;
}

.section:nth-of-type(2) {
  animation-delay: 0.08s;
}

.section:nth-of-type(3) {
  animation-delay: 0.16s;
}

.section:nth-of-type(4) {
  animation-delay: 0.24s;
}

.section:nth-of-type(5) {
  animation-delay: 0.32s;
}

.hero {
  padding-top: clamp(2.1rem, 6vw, 4.4rem);
  padding-bottom: clamp(2rem, 5vw, 3.8rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 1.2rem;
}

.hero-image {
  margin: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.05rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(43, 57, 41, 0.18);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #1f2b1f;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5.8vw, 4.1rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

p {
  margin: 0 0 1rem;
  max-width: 70ch;
}

.lead {
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  color: #2a3b2c;
  margin-bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  padding: 1rem;
  border-radius: 0.95rem;
  border: 1px solid var(--border);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.45), rgba(226, 237, 212, 0.45));
}

.card p,
.steps p {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery figure {
  margin: 0;
  border-radius: 0.95rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.steps article {
  padding: 1rem;
  border-radius: 0.95rem;
  background: rgba(232, 240, 219, 0.42);
  border: 1px solid var(--border);
}

.contact dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact div {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.3);
}

dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

dd {
  margin: 0.35rem 0 0;
  font-weight: 500;
}

.contact a {
  color: inherit;
  text-decoration-color: rgba(79, 101, 64, 0.55);
  text-underline-offset: 0.18em;
}

.contact a:hover {
  text-decoration-color: rgba(79, 101, 64, 1);
}

.section:nth-of-type(6) {
  animation-delay: 0.4s;
}

@media (max-width: 900px) {
  .hero-layout,
  .cards,
  .gallery,
  .steps,
  .contact dl {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
    gap: 0.3rem;
  }

  .section {
    margin-bottom: 1rem;
  }
}

@keyframes rise {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(14px) rotate(7deg);
  }
}
