/* VERDANT VIBES LLC — warm paper, forest moss, light header (distinct from prior mint/teal sites) */
:root {
  --bg: #f3f0e8;
  --surface: #fffcf7;
  --ink: #1e2d26;
  --muted: #4a5c54;
  --line: rgba(30, 45, 38, 0.12);
  --sage: #6b8f71;
  --moss: #2d4a3e;
  --rosewood: #9e6b5c;
  --cream: #faf6ef;
  --shadow: 0 22px 50px rgba(30, 45, 38, 0.1);
  --radius: 10px;
  --radius-lg: 22px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--moss);
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header — light, airy */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.site-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--moss);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--sage);
  color: var(--ink);
}

/* Hero */
.hero-wrap {
  width: 100%;
  padding: 1.1rem 0 0;
}

.hero {
  position: relative;
  margin: 0 auto;
  width: min(var(--max), calc(100% - 2.5rem));
  min-height: min(600px, 85vh);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    120deg,
    rgba(45, 74, 62, 0.88) 0%,
    rgba(158, 107, 92, 0.28) 48%,
    rgba(30, 45, 38, 0.72) 100%
  );
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: clamp(2rem, 5vw, 3.1rem);
  max-width: 640px;
  color: #fff;
}

.hero__slide:not(.is-active) .hero__caption {
  opacity: 0;
  pointer-events: none;
}

.hero__slide.is-active .hero__caption {
  opacity: 1;
  transition: opacity 480ms ease 120ms;
}

.hero__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(230, 243, 232, 0.95);
}

.hero__title {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(0.96rem, 1.45vw, 1.08rem);
  opacity: 0.94;
  max-width: 46ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.22rem;
  border-radius: var(--radius);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--cream);
  color: var(--moss);
  border-color: rgba(255, 252, 247, 0.65);
}

.btn--primary:hover {
  background: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero__controls {
  position: absolute;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.55rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.hero__arrow {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero__dots {
  display: flex;
  gap: 0.4rem;
  margin-left: 0.25rem;
  padding: 0.36rem 0.48rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--cream);
  transform: scale(1.18);
}

/* Sections */
.section {
  padding: clamp(2.75rem, 5vw, 4.35rem) 0;
}

.section__head {
  margin-bottom: 1.35rem;
}

.section__head--center {
  text-align: center;
}

.section__kicker {
  margin: 0 0 0.42rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.section__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.48rem, 2.3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--moss);
}

.intro-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.4rem;
  align-items: center;
}

.intro-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.intro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-split__text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
  box-shadow: var(--shadow);
}

.intro-split__text p {
  margin: 0 0 0.78rem;
  color: var(--muted);
  font-size: 1.01rem;
}

.intro-split__text p:last-child {
  margin-bottom: 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.05rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card__body {
  padding: 0.92rem 0.98rem 1.05rem;
  flex: 1;
}

.card__title {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: var(--shadow);
}

.review__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.68rem;
}

.review__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review__name {
  font-weight: 700;
}

.review__role {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.06rem;
}

.review__stars {
  color: #c4a035;
  letter-spacing: 0.06em;
  margin-bottom: 0.48rem;
  font-size: 0.93rem;
}

.review__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 1.05rem;
  align-items: stretch;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-panel {
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.78rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.field {
  display: grid;
  gap: 0.26rem;
}

.field__label {
  font-size: 0.86rem;
  color: var(--muted);
}

.field__input,
.field__textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: #fff;
}

.field__textarea {
  resize: vertical;
  min-height: 132px;
}

.field__input:focus,
.field__textarea:focus {
  outline: 2px solid rgba(107, 143, 113, 0.4);
  border-color: transparent;
}

.form-hint {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 0.2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.5), rgba(227, 232, 226, 0.92));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 1.02fr;
  gap: 1.35rem;
  padding: 2.25rem 0 1.55rem;
  align-items: start;
}

.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 0.55rem;
}

.footer__desc {
  margin: 0 0 0.9rem;
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.93rem;
}

.footer__title {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer__list a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
}

.footer__list a:hover {
  border-bottom-color: rgba(107, 143, 113, 0.45);
  color: var(--moss);
}

.footer__social {
  display: flex;
  gap: 0.48rem;
  margin-top: 0.15rem;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 143, 113, 0.12);
  border: 1px solid var(--line);
  color: var(--moss);
  text-decoration: none;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social:hover {
  background: rgba(107, 143, 113, 0.22);
}

.footer__bottom {
  padding: 0.9rem 0 1.35rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* About */
.about-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 1.3rem;
}

.about-hero-img img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.about-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.6vw, 1.8rem);
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-stack {
  display: grid;
  gap: 1.08rem;
}

/* Contact */
.contact-banner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 1rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-banner img {
  width: 100%;
  display: block;
  max-height: 320px;
  object-fit: cover;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: start;
  padding-top: 0.4rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.22rem 1.3rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 0.68rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  color: var(--moss);
}

.contact-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-card dt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-card dd {
  margin: 0;
  font-size: 0.99rem;
}

.contact-card a {
  word-break: break-word;
}

.contact-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-media img {
  width: 100%;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .intro-split,
  .split,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__controls {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
