:root {
  --cream: #f6f2ed;
  --green: #004f2d;
  --green-dark: #004f2d;
  --gold: #e3a549;
  --gold-deep: #c2872f;
  --gold-soft: rgba(227, 165, 73, 0.18);
  --olive: #004f2d;
  --grey-100: rgba(246, 242, 237, 0.8);
  --grey-200: rgba(24, 129, 84, 0.12);
  --grey-400: rgba(24, 129, 84, 0.62);
  --text: #004f2d;
  --white: #f6f2ed;
  --shadow: 0 24px 60px rgba(24, 129, 84, 0.18);
  --purple: #e3a549;
}

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

body {
  font-family: "Public Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

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

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  position: relative;
}

.nav__logo {
  width: 35%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: rgba(246, 242, 237, 0.8);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(24, 129, 84, 0.2);
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--green);
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--green);
  text-shadow: 0 8px 24px rgba(227, 165, 73, 0.35);
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: linear-gradient(90deg, rgba(20, 90, 66, 1) 1%, rgba(1, 31, 5, 1) 100%);
  color: var(--cream);
  padding: 10px 15px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(24, 129, 84, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.nav__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 36px rgba(24, 129, 84, 0.35);
  filter: brightness(1.05);
}

.nav__cta::after,
.nav__cta:hover::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: 190px 6vw 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--green-dark);
  display: grid;
  gap: 54px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -80px;
  height: 140px;
  background: var(--cream);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(246, 242, 237, 0.92),
    rgba(246, 242, 237, 0.78)
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.hero__eyebrow {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 4.3vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--grey-400);
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  justify-content: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.hero__stat {
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(246, 242, 237, 0.16);
  border: 1px solid rgba(246, 242, 237, 0.22);
  backdrop-filter: blur(6px);
}

.hero__stats strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: normal;
  margin-bottom: 6px;
  color: var(--cream);
}

.hero__search {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px 24px;
  align-items: end;
  background: linear-gradient(
      120deg,
      rgba(246, 242, 237, 0.96),
      rgba(246, 242, 237, 0.9)
    ),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  padding: 34px 6vw;
  border-radius: 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(227, 165, 73, 0.2);
  width: calc(100% + 12vw);
  margin: 0 -6vw;
}

.hero__field {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--grey-400);
}

.hero__field label {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--green);
}

.hero__field input,
.hero__field select {
  border: 1px solid rgba(24, 129, 84, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  font-family: "Public Sans", sans-serif;
  background: var(--cream);
}

.hero__search-button {
  justify-self: stretch;
  align-self: center;
  padding: 12px 20px;
  min-width: 180px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button--primary {
  background: linear-gradient(90deg, rgba(20, 90, 66, 1) 1%, rgba(1, 31, 5, 1) 100%);
  background-size: 200% 200%;
  background-position: left center;
  color: var(--cream);
  box-shadow: 0 16px 30px rgba(24, 129, 84, 0.28);
}

.button--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 26px 36px rgba(24, 129, 84, 0.42);
  background-position: right center;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(24, 129, 84, 0.18);
}

.section {
  padding: 110px 6vw;
}

.section__head {
  margin: 0 auto 48px;
  text-align: center;
}

.section__head--wide {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 24px;
  max-width: none;
}

.section__head h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section__head p {
  color: var(--grey-400);
  font-size: 1rem;
}

.section__eyebrow {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 14px;
}

.section--expertise {
  background: var(--grey-100);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.expertise-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--grey-200);
  box-shadow: 0 16px 40px rgba(24, 129, 84, 0.1);
  display: grid;
  gap: 14px;
}

.expertise-card span {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--gold);
}

.expertise-card h3 {
  font-family: "Manrope", sans-serif;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.expertise-card p {
  color: var(--grey-400);
}

.section--listings {
  background: var(--cream);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.listing-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.listing-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(24, 129, 84, 0.12);
  display: grid;
  grid-template-rows: 210px auto;
  border: 1px solid rgba(24, 129, 84, 0.1);
}

.listing-card__image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.listing-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 129, 84, 0.08),
    rgba(24, 129, 84, 0.35)
  );
}

.listing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  background: rgba(24, 129, 84, 0.1);
  color: var(--green);
}

.listing-card__badge--opportunity {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(227, 165, 73, 0.92);
  color: #fff;
  box-shadow: 0 12px 24px rgba(227, 165, 73, 0.3);
}

.listing-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-card__body {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.listing-card__meta {
  display: flex;
  justify-content: space-between;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--gold);
}

.listing-card__body h3 {
  font-family: "Manrope", sans-serif;
  color: var(--green-dark);
}

.listing-card__body p {
  color: var(--grey-400);
}

.listing-card__pitch {
  font-weight: 600;
  color: var(--green-dark);
}

.listing-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--green-dark);
  padding-top: 6px;
  border-top: 1px solid rgba(24, 129, 84, 0.12);
}

.listing-card__budget {
  display: grid;
  gap: 4px;
  text-align: right;
}

.listing-card__budget span {
  font-size: 10px;
  color: var(--grey-400);
}

.listing-card__footer strong {
  color: var(--green);
  font-size: 0.95rem;
}

.listing-card__actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.listing-card--compact {
  border-radius: 22px;
  grid-template-rows: 160px auto;
}

.listing-card--compact .listing-card__body {
  padding: 20px;
  gap: 10px;
}

.listing-card--compact .listing-card__body h3 {
  font-size: 1.05rem;
}

.listing-card--compact .listing-card__footer strong {
  font-size: 0.88rem;
}

.listing-card--compact .button {
  padding: 10px 18px;
  font-size: 11px;
}


.partners-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 72px 0;
  background: var(--cream);
}

.partners-band__heading {
  margin-bottom: 28px;
}

.partners-band__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
  padding: 8px 24px;
}

.partners-band__logo {
  min-width: 170px;
  display: grid;
  place-items: center;
}

.partners-band__logo img {
  width: 100%;
  max-width: 150px;
  height: 72px;
  object-fit: contain;
  filter: saturate(1.02);
}

.partners-band__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14vw;
  z-index: 2;
  pointer-events: none;
}

.partners-band__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--cream), rgba(246, 242, 237, 0));
}

.partners-band__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--cream), rgba(246, 242, 237, 0));
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonials {
  width: 100%;
  max-width: none;
  background: linear-gradient(90deg, rgba(20, 90, 66, 1) 1%, rgba(1, 31, 5, 1) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -20%;
  width: 160%;
  height: 80%;
  background: linear-gradient(45deg, rgba(246, 242, 237, 0.08), rgba(246, 242, 237, 0));
  transform: rotate(-8deg);
}

.testimonials .section__head h2,
.testimonials .section__head p {
  color: var(--cream);
}

.testimonials__rating {
  margin-top: 14px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(246, 242, 237, 0.28);
  background: rgba(246, 242, 237, 0.08);
  font-size: 0.95rem;
}

.testimonials__rating span {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.testimonials__rating strong {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.testimonials__masonry {
  columns: 3 300px;
  column-gap: 22px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  display: inline-grid;
  width: 100%;
  gap: 16px;
  margin: 0 0 22px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(246, 242, 237, 0.98);
  color: var(--green-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(227, 165, 73, 0.4);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.testimonial-card--2 {
  transform: rotate(-1.5deg);
}

.testimonial-card--3 {
  transform: rotate(1.5deg);
}

.testimonial-card--1:hover {
  transform: translateY(-10px) rotate(1.1deg);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.26);
  border-color: rgba(227, 165, 73, 0.68);
}

.testimonial-card--2:hover {
  transform: translateY(-8px) scale(1.03) rotate(-2deg);
  box-shadow: 0 28px 46px rgba(1, 31, 5, 0.28);
  border-color: rgba(24, 129, 84, 0.45);
}

.testimonial-card--3:hover {
  transform: translateY(-11px) rotate(2.1deg);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(227, 165, 73, 0.78);
}

.testimonial-card__stars {
  color: var(--gold-deep);
  letter-spacing: 0.14em;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  font-weight: 600;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author h3 {
  font-family: "Manrope", sans-serif;
}

.testimonial-card__author p {
  color: var(--grey-400);
}
.section--offers {
  background: var(--cream);
}

.section__head a {
  color: var(--green);
  text-decoration: underline;
}

.section--insight {
  background: var(--cream);
}

.insight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.insight__content ul {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  gap: 10px;
  color: var(--grey-400);
}

.insight__content ul li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.insight__media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section--team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px);
  justify-content: center;
}

.team-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(24, 129, 84, 0.12);
  border: 1px solid rgba(24, 129, 84, 0.14);
  text-align: center;
}

.team-card__body {
  display: grid;
  gap: 6px;
}

.team-card img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto;
}

.team-card h3 {
  font-family: "Manrope", sans-serif;
  color: var(--green-dark);
}

.team-card p {
  color: var(--grey-400);
  margin: 6px 0;
}

.team-card span {
  font-size: 0.9rem;
  color: var(--green);
}

.team-card__linkedin {
  margin-top: auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(24, 129, 84, 0.18);
  background: rgba(246, 242, 237, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card__linkedin svg {
  width: 24px;
  height: 24px;
}

.team-card__linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(24, 129, 84, 0.2);
}

.section--cta {
  background: linear-gradient(90deg, rgba(20, 90, 66, 1) 1%, rgba(1, 31, 5, 1) 100%);
  color: var(--cream);
  padding: 90px 6vw;
}

.section--cta .button--primary {
  box-shadow: 0 18px 32px rgba(1, 31, 5, 0.38);
}

.section--cta .button--primary:hover {
  color: var(--cream);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.cta h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta p {
  color: rgba(246, 242, 237, 0.8);
  margin-top: 12px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  background: linear-gradient(90deg, rgba(20, 90, 66, 1) 1%, rgba(1, 31, 5, 1) 100%);
  color: var(--cream);
  padding: 80px 6vw;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer__logo {
  width: 300px;
  margin-bottom: 16px;
}

.legal-page {
  padding-top: 170px;
}

.legal-page h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.legal-page__content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(24, 129, 84, 0.12);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(24, 129, 84, 0.1);
}

.legal-page__content h2 {
  margin: 28px 0 10px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.footer__tagline {
  color: rgba(246, 242, 237, 0.7);
}

.footer__links {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0.95rem;
}

.footer__links h4 {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-bottom: 8px;
}

.footer__links a {
  display: inline-flex;
  padding: 4px 0;
  color: rgba(246, 242, 237, 0.7);
}

.footer__legal h4 {
  margin-bottom: 12px;
}

.footer__legal p {
  color: rgba(246, 242, 237, 0.65);
  margin-bottom: 8px;
}

.listings__filters {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--grey-400);
}

.listings__filter-form {
  margin: 26px 0 36px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(24, 129, 84, 0.14);
  box-shadow: 0 20px 40px rgba(24, 129, 84, 0.08);
}

.listings__filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.listings__filter-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "DM Sans", sans-serif;
}

.listings__filter-form input,
.listings__filter-form select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(24, 129, 84, 0.2);
  font-family: "Public Sans", sans-serif;
}

.listings__filter-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.listings__filters strong {
  color: var(--green);
}

.listings__empty {
  margin-top: 32px;
  text-align: center;
  color: var(--grey-400);
}

.listings__empty a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 600;
}

.listing-detail {
  padding-top: 160px;
}

.listing-detail__hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.listing-detail__image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  position: relative;
  box-shadow: var(--shadow);
}

.listing-detail__content h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin-bottom: 12px;
}

.listing-detail__location {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
}

.listing-detail__description {
  color: var(--grey-400);
  margin-bottom: 24px;
}

.listing-detail__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.listing-detail__meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-400);
}

.listing-detail__meta strong {
  display: block;
  font-size: 1.1rem;
  color: var(--green);
  margin-top: 6px;
}

.listing-detail__features {
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(24, 129, 84, 0.12);
}

.listing-detail__features h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.listing-detail__features ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--grey-400);
}

.listing-detail__features li {
  padding-left: 18px;
  position: relative;
}

.listing-detail__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.listing-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.admin {
  min-height: 100vh;
  padding: 96px 7vw 120px;
  background: var(--cream);
}

.admin--dashboard {
  background: var(--cream);
}

.admin__card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--cream);
  padding: 44px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(24, 129, 84, 0.12);
}

.admin__logo {
  width: 110px;
  margin: 0 auto 16px;
}

.admin__form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin__form label {
  display: grid;
  gap: 8px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.admin__form input,
.admin__form textarea,
.admin__form select {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--grey-200);
  font-family: "Public Sans", sans-serif;
  background: #ffffff;
}

.admin__error {
  background: var(--gold-soft);
  color: var(--green);
  padding: 10px;
  border-radius: 12px;
  margin-top: 16px;
}

.admin__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.admin__eyebrow {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 10px;
}

.admin__layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 40px;
}

.admin__sidebar {
  gap: 28px;
}

.admin__content {
  display: grid;
  gap: 36px;
}

.admin__sidebar-card {
  background: var(--grey-100);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--grey-200);
}

.admin__nav {
  list-style: none;
  display: grid;
  gap: 12px;
}

.admin__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(24, 129, 84, 0.12);
  font-weight: 600;
  color: var(--green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin__nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(24, 129, 84, 0.18);
}

.admin__sidebar-card a {
  color: var(--green);
  font-weight: 600;
}

.admin__sidebar-card ul {
  list-style: none;
  color: var(--grey-400);
  display: grid;
  gap: 8px;
}

.admin__section {
  background: var(--grey-100);
  padding: 40px;
  border-radius: 26px;
  margin-bottom: 36px;
  border: 1px solid var(--grey-200);
}

.admin__section--media .admin__form label {
  gap: 10px;
}

.admin__section--media input[type="file"] {
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(24, 129, 84, 0.3);
  background: #ffffff;
}

.admin__features-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin__feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.admin__feature-tag {
  border: 1px solid rgba(24, 129, 84, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--grey-100);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
}

.admin__section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 20px;
}

.admin__form--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.admin__full {
  grid-column: 1 / -1;
}

.admin__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.admin__card-item {
  background: var(--cream);
  padding: 28px;
  border-radius: 22px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--grey-200);
}

.admin__card-form {
  display: grid;
  gap: 12px;
}

.admin__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin__delete-form {
  margin-top: 4px;
}

.button--danger {
  border-color: rgba(227, 165, 73, 0.7);
  color: var(--gold);
}

.admin__card-header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.admin__card-header img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
}

.admin__media {
  display: grid;
  gap: 16px;
}

.admin__gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.admin__gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(24, 129, 84, 0.15);
}

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

.admin__gallery-item button {
  position: absolute;
  top: 6px;
  right: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(24, 129, 84, 0.85);
  color: #fff;
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
}

.footer__admin-link {
  color: inherit;
  text-decoration: none;
}

.footer__admin-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

.listing-detail__gallery {
  margin-top: 28px;
}

.listing-detail__carousel {
  position: relative;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(24, 129, 84, 0.12);
}

.listing-detail__carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.listing-detail__carousel-image.is-active {
  opacity: 1;
  pointer-events: auto;
}

.listing-detail__carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(246, 242, 237, 0.9);
  color: var(--green);
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(24, 129, 84, 0.2);
}

.listing-detail__carousel-nav--prev {
  left: 14px;
}

.listing-detail__carousel-nav--next {
  right: 14px;
}

.listing-detail__carousel-count {
  margin-top: 10px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--green);
}

@media (max-width: 1024px) {
  .admin__layout {
    grid-template-columns: 1fr;
  }

  .hero__search {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .hero__search-button {
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: row;
    gap: 16px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 6vw;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(246, 242, 237, 0.98);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(24, 129, 84, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav__links--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding: 120px 6vw 80px;
  }

  .section__head--wide {
    justify-items: center;
    text-align: center;
  }

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

@media (max-width: 720px) {
  .partners-band__fade {
    width: 20vw;
  }

  .testimonials__masonry {
    columns: 2 240px;
  }
  .nav__links {
    right: 6vw;
    width: calc(100% - 12vw);
  }

  .hero__search {
    grid-template-columns: 1fr;
    padding: 26px 6vw;
  }

  .hero__search-button {
    width: 100%;
    min-width: 0;
  }

  .listing-detail__carousel {
    min-height: 240px;
  }

  .section {
    padding: 90px 6vw;
  }

  .listing-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .listing-card__budget {
    text-align: left;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__stat {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .hero::after {
    left: -38%;
    right: -38%;
  }

  .partners-band {
    padding: 56px 0;
  }

  .partners-band__track {
    animation-duration: 20s;
  }

  .testimonials__masonry {
    columns: 1;
  }
  .nav {
    padding: 18px 6vw;
  }

  .nav__logo {
    width: 55%;
  }

  .hero {
    padding: 110px 6vw 70px;
    gap: 36px;
  }

  .hero__content {
    text-align: left;
  }

  .hero__actions {
    align-items: stretch;
  }

  .section__head h2 {
    font-size: 1.9rem;
  }

  .cta {
    gap: 20px;
  }
}
