:root {
  --bg: #f5f2e8;
  --surface: rgba(255, 251, 243, 0.82);
  --surface-dark: #0b6a35;
  --text: #1f281e;
  --muted: #5f6758;
  --line: rgba(33, 42, 31, 0.12);
  --green: #008A41;
  --green-deep: #005d2c;
  --earth: #FF9300;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(34, 52, 37, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 106, 60, 0.12), transparent 24%),
    radial-gradient(circle at right 20%, rgba(69, 102, 63, 0.1), transparent 22%),
    linear-gradient(180deg, #f6f2e9 0%, #efe8da 100%);
}

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.section,
.footer,
.hero {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(33, 42, 31, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding-left: 0.5rem;
  margin-right: 1.5rem;
}

.brand-logo {
  display: block;
  height: 72px;
  max-width: 320px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  font-size: 1.14rem;
  font-weight: 700;
  width: 100%;
  padding-left: 1.5rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 0.2rem 0.2rem;
  text-align: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--earth));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font: inherit;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(34, 52, 37, 0.14);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #618a57);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary.is-dark {
  border-color: rgba(33, 42, 31, 0.14);
  background: transparent;
  color: var(--text);
}

.hero,
.page-hero,
.benefit-layout,
.page-columns,
.contact-layout,
.intro-band,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-main {
  grid-template-columns: 1fr;
}

.page-hero-main {
  grid-template-columns: 1fr;
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.75rem;
}

.home-highlight-grid .intro-band {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.agrindes-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 147, 0, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(0, 138, 65, 0.08), rgba(255, 251, 243, 0.96));
  box-shadow: var(--shadow);
}

.agrindes-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.agrindes-copy p:last-of-type {
  margin-bottom: 0;
}

.agrindes-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin: 1.5rem auto 0;
  mix-blend-mode: multiply;
}

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

.agrindes-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-height: 250px;
  padding: 0.55rem 0.55rem 0.75rem;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(33, 42, 31, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(34, 52, 37, 0.08);
}

.agrindes-item img {
  width: 100%;
  max-width: 170px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.agrindes-item span {
  color: var(--text);
  font-family: "Bree Serif", serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.agrindes-download {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  opacity: 0.82;
}

.agrindes-cta {
  display: flex;
  width: fit-content;
  margin-top: 1.75rem;
  margin-left: auto;
}

.distribution-hero {
  display: grid;
  gap: 1.5rem;
  padding: 0;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.distribution-copy {
  max-width: 100%;
}

.distribution-copy p:last-child {
  max-width: 920px;
  margin-bottom: 0;
}

.distribution-support {
  max-width: 980px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.distribution-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  width: calc(100% + 7rem);
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.distribution-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 165px;
  padding: 0.35rem;
  border-radius: 24px;
  border: 1px solid rgba(33, 42, 31, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(34, 52, 37, 0.08);
}

.distribution-logo-card img {
  width: 100%;
  max-width: 240px;
  height: 125px;
  object-fit: contain;
  display: block;
}

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

.services-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-hero-support {
  padding-top: 1.5rem;
}

.service-hero-support .page-hero-card,
.page-hero-support .page-hero-card {
  max-width: none;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero-support {
  padding-top: 1.5rem;
}

.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 138, 65, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 147, 0, 0.08), rgba(255, 251, 243, 0.96));
  box-shadow: var(--shadow);
}

.location-copy {
  min-width: 0;
}

.location-copy p:last-child {
  margin-bottom: 0;
}

.location-features {
  display: grid;
  gap: 1rem;
}

.location-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.location-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(34, 52, 37, 0.1);
}

.location-feature-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(33, 42, 31, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(34, 52, 37, 0.08);
}

.location-feature-card h3 {
  margin-bottom: 0.75rem;
}

.hero-copy,
.hero-panel,
.page-hero-card,
.card,
.service-card,
.feature-panel,
.quote-card,
.mini-card,
.page-block,
.contact-card,
.form-card,
.map-card,
.service-detail,
.timeline-item,
.value-card,
.intro-band,
.cta-section,
.page-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(16, 27, 18, 0.1), rgba(16, 27, 18, 0.58)),
    url("https://images.pexels.com/photos/14421743/pexels-photo-14421743.jpeg?auto=compress&cs=tinysrgb&w=1600") center center/cover;
  color: var(--white);
}

.hero-copy h1,
.section-heading h2,
.cta-section h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-panel,
.page-hero-card,
.card,
.service-card,
.feature-panel,
.mini-card,
.page-block,
.contact-card,
.form-card,
.map-card,
.service-detail,
.timeline-item,
.value-card,
.intro-band,
.cta-section,
.page-hero {
  padding: 1.8rem;
  background: rgba(255, 251, 243, 0.9);
}

.page-hero-main .page-hero-copy {
  padding: 0;
  min-height: auto;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: var(--text);
}

.page-hero-main .page-hero-copy p {
  color: var(--muted);
}

.page-hero-main .page-hero-copy .eyebrow {
  color: var(--earth);
}

.about-hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--earth);
}

.hero-copy .eyebrow {
  color: var(--white);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Bree Serif", serif;
  line-height: 1.12;
  text-wrap: balance;
  max-width: 100%;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
  font-size: 1.5rem;
}

.page-hero-copy h1,
.page-hero-card h2,
.page-block h2,
.contact-card h2,
.form-card h2,
.map-card h2,
.feature-panel h3,
.card h3,
.service-card h3,
.service-detail h3,
.value-card h3,
.timeline-item h3,
.mini-card h3,
.quote-card p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-panel h2,
.intro-band h2 {
  overflow-wrap: normal;
}

p,
li,
label,
input,
textarea {
  line-height: 1.75;
  color: var(--muted);
}

.lead {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  font-size: 1.18rem;
  color: rgba(255, 253, 248, 0.86);
}

.hero-actions,
.cta-actions,
.hero-trust,
.footer,
.split-meta,
.split-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions,
.cta-actions {
  align-items: center;
}

.hero-actions {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.hero-actions .button,
.cta-actions .button {
  min-width: 220px;
}

.split-heading {
  align-items: end;
  justify-content: space-between;
}

.hero-trust span,
.split-meta span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.hero-trust {
  margin-top: 0.75rem;
}

.split-meta span {
  background: rgba(69, 102, 63, 0.1);
  color: var(--text);
  border-color: rgba(69, 102, 63, 0.14);
}

.panel-kicker,
.card-index {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-weight: 800;
  color: var(--earth);
}

.check-list,
.contact-list,
.service-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.check-list li,
.contact-list li,
.service-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.check-list li::before,
.contact-list li::before,
.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--earth));
}

.section {
  padding-top: 5rem;
}

.section-heading {
  width: 100%;
  max-width: none;
  margin-bottom: 2rem;
}

.section-heading > p:last-child,
.intro-band > p,
.cta-section p {
  margin-bottom: 0;
}

.section-cta {
  display: flex;
  width: fit-content;
  margin-top: 2.5rem;
  margin-left: auto;
}

.section-heading h2,
.hero-copy h1,
.cta-section h2,
.page-hero-copy h1,
.page-hero-card h2,
.page-block h2,
.contact-card h2,
.form-card h2,
.map-card h2 {
  text-wrap: pretty;
}

.section-heading > p:last-child {
  max-width: 760px;
}

.hero-panel p,
.intro-band p,
.section-heading p,
.card p,
.service-card p,
.feature-panel p,
.mini-card p,
.benefit-copy p,
.contact-card p,
.form-card p,
.map-card p,
.service-detail p,
.timeline-item p,
.value-card p,
.quote-card span,
.footer p,
.footer a,
.check-list li,
.contact-list li,
.service-points li {
  font-size: 1.04rem;
}

.eyebrow,
.panel-kicker,
.card-index {
  font-size: 0.82rem;
}

.section-dark {
  width: var(--container);
  margin: 5rem auto 0;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green-deep), var(--surface-dark));
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .quote-card p,
.section-dark .quote-card span {
  color: var(--white);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-grid .service-card:nth-child(2n) {
  transform: translateY(1rem);
}

.feature-panel {
  min-height: auto;
  display: block;
  justify-content: initial;
  background: rgba(255, 251, 243, 0.9);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: 0;
  min-height: 250px;
  padding: 1.9rem 1.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 253, 248, 0.14);
  overflow: hidden;
}

.quote-card p {
  margin: 0;
  font-size: 1.08rem;
  font-family: "Bree Serif", serif;
  line-height: 1.28;
  max-width: 100%;
  overflow-wrap: break-word;
}

.quote-card span {
  display: block;
  margin-top: auto;
  font-size: 1rem;
  line-height: 1.45;
}

.google-review {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.google-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.google-review-top span {
  margin-top: 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.95rem;
  white-space: nowrap;
}

.google-stars {
  color: #fbbc04;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-review p {
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.7;
}

.review-cta {
  display: flex;
  width: fit-content;
  margin: 2rem auto 0;
  background: #ffffff;
  color: var(--green);
  border: 2px solid #ffffff;
}


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

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

.benefit-layout {
  grid-template-columns: 1fr;
}

.benefit-copy {
  max-width: 760px;
}

.benefit-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section {
  margin-top: 2.5rem;
  margin-bottom: 6rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-panel,
.intro-band > div,
.cta-section > div:first-child,
.benefit-copy,
.service-card,
.card,
.feature-panel,
.mini-card,
.section-heading {
  min-width: 0;
}

.cta-copy {
  max-width: 760px;
}

.cta-actions {
  justify-content: flex-end;
  align-items: stretch;
}

.cta-actions .button {
  min-width: 260px;
}

.text-link {
  font-weight: 700;
  color: var(--green);
}

.footer {
  padding: 0 0 3rem;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(33, 42, 31, 0.08);
}

.footer-global {
  padding-top: 2rem;
}

.footer div {
  flex: 1 1 220px;
}

.footer strong,
.footer a {
  display: block;
  margin-bottom: 0.55rem;
}

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

.form-card form {
  display: grid;
  gap: 1rem;
}

.form-card button[type="submit"] {
  width: 100%;
}

.form-card button[type="submit"]:disabled {
  opacity: 0.85;
  cursor: wait;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  line-height: 1.55;
}

.consent-field input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  padding: 0;
  flex: 0 0 auto;
}

.consent-field span {
  color: var(--muted);
}

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

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(33, 42, 31, 0.12);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-message[data-state="error"] {
  color: #b3401f;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
}

.contact-map-frame {
  margin: 1.25rem 0;
  min-height: 280px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .home-highlight-grid,
  .agrindes-hero,
  .distribution-hero,
  .location-hero,
  .page-hero,
  .benefit-layout,
  .page-columns,
  .contact-layout,
  .intro-band,
  .cta-section,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid .service-card:nth-child(2n) {
    transform: none;
  }

  .agrindes-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .distribution-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .services-gallery {
    grid-template-columns: 1fr;
  }

  .location-gallery {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(33, 42, 31, 0.08);
    box-shadow: var(--shadow);
  }

  .topbar,
  .split-heading,
  .footer,
  .grid-2,
  .grid-3,
  .benefit-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .agrindes-products {
    grid-template-columns: 1fr;
  }

  .distribution-logos {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .brand-logo {
    height: 56px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .hero-panel,
  .intro-band,
  .cta-section,
  .section-heading,
  .service-card,
  .card,
  .feature-panel,
  .mini-card {
    overflow: hidden;
  }
}
