:root {
  --forest: #173d2c;
  --forest-deep: #0e2e20;
  --leaf: #356b40;
  --mango: #f5ab17;
  --mango-light: #ffd76f;
  --peel: #fff4d8;
  --paper: #fffaf0;
  --clay: #b75225;
  --ink: #283526;
  --muted: #66705d;
  --line: rgba(23, 61, 44, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--forest-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(23, 61, 44, 0.1);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
  fill: var(--mango);
}

.brand-mark path:last-child {
  fill: var(--leaf);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--leaf);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: none;
}

.primary-nav a {
  padding: 8px 2px;
  color: #43543f;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover {
  color: var(--clay);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 11px 17px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--whatsapp {
  color: var(--paper);
  background: var(--forest);
  box-shadow: 4px 4px 0 var(--mango);
}

.button--whatsapp:hover {
  background: var(--leaf);
  box-shadow: 6px 6px 0 var(--mango);
}

.button--whatsapp:focus-visible {
  outline-color: var(--mango);
}

.button--light {
  color: var(--forest-deep);
  background: var(--mango-light);
  box-shadow: 4px 4px 0 rgba(255, 250, 240, 0.38);
}

.button--light:hover {
  color: var(--paper);
  background: var(--clay);
  box-shadow: 6px 6px 0 rgba(255, 250, 240, 0.38);
}

.button--large {
  min-height: 54px;
  padding-inline: 20px;
  font-size: 0.91rem;
}

.whatsapp-icon {
  width: 19px;
  height: 19px;
  flex: none;
  fill: currentColor;
}

.header-order {
  min-height: 39px;
  padding: 9px 10px;
  font-size: 0;
  box-shadow: 3px 3px 0 var(--mango);
}

.header-order .whatsapp-icon {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  display: grid;
  gap: 38px;
  padding-block: 56px 78px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--forest);
  font-family: var(--serif);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 690px;
  margin-bottom: 21px;
  font-size: clamp(3.1rem, 11vw, 5.7rem);
  font-weight: 600;
  line-height: 0.96;
}

.hero-intro {
  max-width: 520px;
  margin-bottom: 28px;
  color: #4c584a;
  font-size: 1.03rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.65;
  text-decoration: none;
  transition: color 160ms ease, gap 160ms ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--clay);
}

.text-link--green {
  margin-top: 8px;
}

.hero-image {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 9px 9px;
  background: var(--mango-light);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(14, 46, 32, 0.48));
  content: "";
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.hero-image figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.74rem;
  font-weight: 600;
}

.figcaption-mark {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 29px;
  display: none;
  padding: 15px 22px;
  color: var(--forest);
  background: var(--mango-light);
  box-shadow: 6px 6px 0 var(--forest);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  margin-bottom: 3px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.04rem;
}

.mangoes {
  padding-block: 68px 92px;
  scroll-margin-top: 76px;
}

.section-heading h2 {
  max-width: 770px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 7vw, 4.2rem);
  font-weight: 600;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.mango-grid {
  display: grid;
  gap: 14px;
  margin-top: 37px;
}

.mango-panel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.mango-panel h3 {
  margin-bottom: 11px;
  font-size: clamp(1.75rem, 6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.04;
}

.mango-panel p:last-child {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.57;
}

.variety-index {
  margin-bottom: 19px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mango-panel--anwar {
  display: grid;
  align-items: end;
  min-height: 445px;
  border-radius: 0 64px 0 0;
  background: var(--forest);
}

.mango-panel--anwar::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 43, 28, 0.02) 28%, rgba(13, 43, 28, 0.91) 100%);
  content: "";
}

.mango-panel--anwar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mango-panel--anwar .mango-panel__content {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: var(--paper);
}

.mango-panel--anwar h3 {
  color: var(--mango-light);
}

.mango-panel--white {
  display: grid;
  background: var(--mango-light);
}

.mango-panel--white .mango-panel__content {
  padding: 29px 26px 23px;
}

.mango-panel--white img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12);
}

.mango-panel--sindhri {
  display: flex;
  align-items: end;
  min-height: 340px;
  padding: 29px 26px;
  border: 1px solid var(--forest);
  background: var(--paper);
}

.mango-panel--sindhri .mango-panel__content {
  position: relative;
  z-index: 1;
  max-width: 290px;
}

.mango-panel__ornament {
  position: absolute;
  top: 23px;
  right: -20px;
  width: 172px;
  color: rgba(53, 107, 64, 0.62);
}

.mango-panel__ornament svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mango-panel--duresri {
  display: grid;
  grid-template-rows: 195px auto;
  min-height: 0;
  color: var(--paper);
  background: var(--clay);
}

.mango-panel--duresri img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}

.mango-panel--duresri .mango-panel__content {
  padding: 28px 26px 31px;
}

.mango-panel--duresri h3 {
  color: var(--mango-light);
}

.why-us {
  display: grid;
  color: var(--paper);
  background: var(--forest);
  scroll-margin-top: 76px;
}

.why-us__image {
  position: relative;
  min-height: 360px;
}

.why-us__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 46, 32, 0.72), transparent 60%);
  content: "";
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__image p {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.why-us__content {
  padding: 55px 20px 66px;
}

.why-us .eyebrow {
  color: var(--mango-light);
}

.why-us h2,
.why-us h3 {
  color: var(--paper);
}

.reasons-list {
  display: grid;
  gap: 0;
  max-width: 650px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.reasons-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 244, 216, 0.25);
}

.reasons-list li:last-child {
  border-bottom: 1px solid rgba(255, 244, 216, 0.25);
}

.reasons-list > li > span {
  color: var(--mango-light);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reasons-list h3 {
  margin-bottom: 6px;
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.1;
}

.reasons-list p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.order-process {
  position: relative;
  overflow: hidden;
  padding-block: 70px;
  color: var(--paper);
  background: var(--leaf);
  scroll-margin-top: 76px;
}

.order-process::before {
  position: absolute;
  top: -115px;
  right: -100px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 215, 111, 0.38);
  border-radius: 50%;
  content: "";
}

.order-process .section-shell {
  position: relative;
}

.order-process__topline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
}

.section-heading--light .eyebrow {
  color: var(--mango-light);
}

.section-heading--light h2 {
  color: var(--paper);
}

.steps-list {
  display: grid;
  gap: 22px;
  margin: 47px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding: 0 2px 0 57px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--mango-light);
  border-radius: 50% 50% 44% 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.steps-list h3 {
  margin-bottom: 7px;
  color: var(--paper);
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1.1;
}

.steps-list p {
  max-width: 350px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.8);
  font-size: 0.89rem;
  line-height: 1.63;
}

.farm {
  display: grid;
  gap: 41px;
  padding-block: 76px;
  scroll-margin-top: 76px;
}

.farm__copy {
  padding-top: 10px;
}

.farm__copy h2 {
  max-width: 550px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 8vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
}

.farm__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.73;
}

.farm__image {
  position: relative;
  min-height: 400px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px 70px 6px 6px;
  background: var(--mango-light);
}

.farm__image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.farm__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 17px;
  color: var(--paper);
  background: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  gap: 45px;
  padding: 49px 29px 0;
  background: #f9d56b;
  scroll-margin-top: 76px;
}

.contact__intro h2 {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 8vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
}

.contact__intro > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 24px;
  color: #4f573c;
  line-height: 1.65;
}

.contact .button {
  margin-bottom: 3px;
}

.contact-details {
  display: grid;
  margin: 0 -29px;
  padding: 0;
  border-top: 1px solid rgba(23, 61, 44, 0.22);
  font-style: normal;
}

.contact-details > * {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 21px 29px;
  border-bottom: 1px solid rgba(23, 61, 44, 0.22);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.contact-details a:hover {
  color: var(--paper);
  background: var(--forest);
}

.contact-details span {
  color: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 33px 20px;
  color: rgba(255, 250, 240, 0.87);
  background: var(--forest-deep);
}

.footer-brand {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-brand .brand-mark {
  width: 29px;
  height: 29px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.8rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mango-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 600px) {
  .section-shell {
    width: min(100% - 64px, 1200px);
  }

  .site-header {
    min-height: 79px;
    padding-inline: 32px;
  }

  .header-order {
    padding-inline: 13px;
    font-size: 0.78rem;
  }

  .header-order .whatsapp-icon {
    width: 18px;
    height: 18px;
  }

  .hero {
    padding-block: 78px 96px;
  }

  .hero-image {
    min-height: 510px;
  }

  .hero-image img {
    min-height: 510px;
  }

  .hero-image figcaption {
    right: 28px;
    bottom: 23px;
    left: 28px;
  }

  .mangoes {
    padding-block: 90px 112px;
  }

  .mango-grid {
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }

  .mango-panel--anwar {
    grid-row: span 2;
    min-height: 680px;
  }

  .mango-panel--white {
    min-height: 340px;
  }

  .mango-panel--white img {
    height: 172px;
  }

  .mango-panel--sindhri {
    min-height: 323px;
  }

  .mango-panel--duresri {
    min-height: 370px;
  }

  .why-us {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  }

  .why-us__image {
    min-height: 100%;
  }

  .why-us__content {
    padding: 83px 42px 88px;
  }

  .order-process {
    padding-block: 88px;
  }

  .order-process__topline {
    flex-direction: row;
    justify-content: space-between;
    gap: 35px;
  }

  .order-process__topline .button {
    flex: none;
  }

  .steps-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .steps-list li {
    min-height: 181px;
    padding: 57px 18px 0 0;
  }

  .steps-list li:not(:last-child)::after {
    position: absolute;
    top: 17px;
    right: 2px;
    left: 52px;
    border-top: 1px dashed rgba(255, 244, 216, 0.48);
    content: "";
  }

  .farm {
    gap: 50px;
    padding-block: 100px;
  }

  .farm__image {
    min-height: 520px;
  }

  .farm__image img {
    min-height: 520px;
  }

  .contact {
    padding: 65px 45px 0;
  }

  .contact-details {
    grid-template-columns: repeat(3, 1fr);
    margin-inline: -45px;
  }

  .contact-details > * {
    min-height: 127px;
    padding: 25px 29px;
    border-bottom: 0;
  }

  .contact-details > *:not(:last-child) {
    border-right: 1px solid rgba(23, 61, 44, 0.22);
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 31px 32px;
  }

  .footer-links {
    align-items: flex-end;
  }
}

@media (min-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 23px;
  }

  .header-order {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, 0.93fr) minmax(375px, 0.77fr);
    align-items: center;
    gap: clamp(46px, 7vw, 100px);
    min-height: 650px;
    padding-block: 78px 92px;
  }

  .hero-image {
    min-height: 545px;
  }

  .hero-image img {
    min-height: 545px;
  }

  .hero-note {
    display: block;
  }

  .mango-grid {
    grid-template-columns: 1.13fr 0.87fr;
  }

  .mango-panel--anwar .mango-panel__content {
    padding: 38px;
  }

  .mango-panel--white {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    min-height: 330px;
  }

  .mango-panel--white .mango-panel__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
  }

  .mango-panel--white img {
    height: 100%;
  }

  .mango-panel--sindhri {
    min-height: 333px;
    padding: 36px;
  }

  .mango-panel--duresri {
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: 1fr;
    min-height: 333px;
  }

  .mango-panel--duresri img {
    height: 100%;
  }

  .mango-panel--duresri .mango-panel__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
  }

  .why-us {
    grid-template-columns: minmax(335px, 0.8fr) minmax(0, 1.2fr);
  }

  .why-us__content {
    padding: 104px clamp(48px, 7vw, 112px) 109px;
  }

  .farm {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.94fr);
    align-items: center;
    gap: clamp(58px, 9vw, 140px);
  }

  .contact {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.85fr);
    align-items: end;
    gap: 60px;
    padding: 69px 60px 0;
  }

  .contact-details {
    display: block;
    margin: 0 -60px 0 0;
    border-top: 0;
    border-left: 1px solid rgba(23, 61, 44, 0.22);
  }

  .contact-details > * {
    min-height: 133px;
    padding: 22px 36px;
    border-bottom: 1px solid rgba(23, 61, 44, 0.22);
    border-right: 0 !important;
  }
}

@media (min-width: 1240px) {
  .site-header {
    padding-right: max(42px, calc((100vw - 1310px) / 2));
    padding-left: max(42px, calc((100vw - 1310px) / 2));
  }

  .hero {
    min-height: 690px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
