:root {
  --forest: #175d31;
  --forest-deep: #0d4825;
  --leaf: #4f8c2c;
  --brown: #48291d;
  --ink-soft: #5d6263;
  --ivory: #f8f5eb;
  --gold: #c7a943;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--brown);
  background: var(--ivory);
  font-family: var(--sans);
}

a {
  color: inherit;
}

.aashvi-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(720px, 84svh, 800px);
  overflow: hidden;
  background: var(--ivory);
}

.hero-garden {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 37.5%;
  overflow: hidden;
  background: #819b4f;
}

.hero-garden::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 245, 235, 0.12), transparent 17%),
    linear-gradient(180deg, rgba(30, 49, 22, 0.02), rgba(13, 42, 19, 0.12));
}

.hero-garden-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.015);
  animation: gardenZoom 14s ease-in-out infinite alternate;
}

.hero-content-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 51.5%;
  min-height: clamp(720px, 84svh, 800px);
  padding: clamp(42px, 5vw, 84px) clamp(46px, 5.2vw, 84px);
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.58), transparent 38%),
    var(--ivory);
  border-radius: 0 49% 49% 0 / 0 56% 56% 0;
  box-shadow: 5px 0 0 rgba(200, 168, 68, 0.58);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 570px);
}

.hero-eyebrow {
  margin: 0;
  color: #15502b;
  font-size: clamp(11px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-eyebrow span {
  margin: 0 0.26em;
}

.eyebrow-rule {
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 15px;
  background: #6c9f50;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: clamp(3px, 0.45vw, 8px);
  margin: clamp(22px, 2.15vw, 38px) 0 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(42px, 3.15vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.01;
}

.hero-title strong {
  color: var(--forest);
  font: inherit;
  white-space: nowrap;
}

.floating-leaf {
  position: absolute;
  top: clamp(82px, 9.5vw, 155px);
  right: clamp(-10px, -1.5vw, -24px);
  color: #739b38;
  font-size: clamp(38px, 4vw, 68px);
  filter: drop-shadow(0 8px 8px rgba(41, 80, 30, 0.15));
  transform: rotate(-28deg);
  animation: leafFloat 4.5s ease-in-out infinite;
}

.hero-description {
  max-width: 560px;
  margin: clamp(24px, 2.25vw, 38px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.36vw, 22px);
  line-height: 1.53;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: clamp(25px, 2.25vw, 38px);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 28px;
  border: 2px solid var(--forest);
  border-radius: 10px;
  font-size: clamp(15px, 1.18vw, 19px);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.hero-button i {
  font-size: 1.15em;
  transition: transform 0.3s ease;
}

.hero-button-primary {
  gap: 17px;
  color: var(--white);
  background: linear-gradient(135deg, #4f8d2f, #2e722d);
  border-color: transparent;
  box-shadow: 0 13px 24px rgba(43, 105, 40, 0.2);
}

.hero-button-secondary {
  gap: 24px;
  min-width: 236px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.34);
}

.hero-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(30, 86, 38, 0.22);
}

.hero-button-primary:hover {
  background: linear-gradient(135deg, #34742f, #155728);
}

.hero-button-primary:hover i {
  transform: rotate(-18deg) scale(1.12);
}

.hero-button-secondary:hover {
  color: var(--white);
  background: var(--forest);
}

.hero-button-secondary:hover i {
  transform: translateX(7px);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(58px, 6.2vw, 100px);
}

.trust-item {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(128, 102, 58, 0.27);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-icon {
  flex: 0 0 auto;
  margin-right: 15px;
  color: var(--forest);
  font-size: clamp(28px, 2.2vw, 40px);
}

.plant-icon {
  transform: rotate(-9deg);
}

.trust-item p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  line-height: 1.12;
}

.trust-item strong {
  color: var(--forest);
  font-size: clamp(17px, 1.45vw, 24px);
  white-space: nowrap;
}

.trust-item small {
  margin-top: 8px;
  color: #262b28;
  font-size: clamp(11px, 0.9vw, 15px);
  white-space: nowrap;
}

.experience-badge {
  position: absolute;
  z-index: 4;
  top: 63%;
  right: clamp(-63px, -4vw, -45px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 12.4vw, 202px);
  aspect-ratio: 1;
  flex-direction: column;
  color: var(--white);
  text-align: center;
  background: linear-gradient(145deg, #4d842d, #226d35);
  border: 3px solid #d3b23d;
  border-radius: 38% 48% 42% 47%;
  box-shadow: 0 13px 30px rgba(34, 89, 35, 0.25);
  transform: translateY(-50%) rotate(-2deg);
  animation: badgeBreathe 5s ease-in-out infinite;
}

.experience-badge::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}

.experience-badge strong {
  font-size: clamp(40px, 4vw, 66px);
  line-height: 0.95;
}

.badge-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 69%;
  margin: 13px 0 10px;
  font-size: 10px;
}

.badge-divider::before,
.badge-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.experience-badge small {
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}

.badge-leaves {
  position: absolute;
  z-index: 1;
  top: 70%;
  right: -5px;
  color: rgba(92, 137, 43, 0.38);
  font-size: 42px;
  transform: rotate(-32deg);
}

.badge-leaves i:nth-child(2) {
  transform: translate(-12px, 18px) rotate(42deg) scale(0.75);
}

.badge-leaves i:nth-child(3) {
  transform: translate(-29px, 36px) rotate(75deg) scale(0.56);
}

.botanical {
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 190px;
  opacity: 0.16;
  background:
    linear-gradient(62deg, transparent 49%, #71966a 50%, transparent 51%) 48% 0 / 3px 100% no-repeat,
    radial-gradient(ellipse at center, transparent 57%, #71966a 59%, transparent 62%) 15% 12% / 45px 62px no-repeat,
    radial-gradient(ellipse at center, transparent 57%, #71966a 59%, transparent 62%) 67% 32% / 49px 70px no-repeat,
    radial-gradient(ellipse at center, transparent 57%, #71966a 59%, transparent 62%) 18% 59% / 48px 68px no-repeat;
}

.botanical-top {
  top: -20px;
  left: -23px;
  transform: rotate(-20deg);
}

.botanical-bottom {
  bottom: -45px;
  left: -12px;
  transform: rotate(160deg);
}

.page-anchor {
  position: absolute;
}

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

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

.hero-title.reveal {
  transition-delay: 0.12s;
}

.hero-description.reveal {
  transition-delay: 0.22s;
}

.hero-actions.reveal {
  transition-delay: 0.32s;
}

.trust-list.reveal {
  transition-delay: 0.42s;
}

.experience-badge.reveal {
  opacity: 0;
  transform: translateY(calc(-50% + 24px)) rotate(-2deg);
}

.experience-badge.reveal.is-visible {
  opacity: 1;
  transform: translateY(-50%) rotate(-2deg);
}

@keyframes gardenZoom {
  from {
    transform: scale(1.015);
  }
  to {
    transform: scale(1.075);
  }
}

@keyframes leafFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-28deg);
  }
  50% {
    transform: translateY(-13px) rotate(-16deg);
  }
}

@keyframes badgeBreathe {
  0%,
  100% {
    border-radius: 38% 48% 42% 47%;
  }
  50% {
    border-radius: 46% 39% 48% 40%;
  }
}

@media (max-width: 1180px) {
  .hero-content-shell {
    width: 57%;
    padding: 48px 44px;
    border-radius: 0 42% 42% 0 / 0 52% 52% 0;
  }

  .hero-garden {
    left: 44%;
  }

  .hero-title {
    font-size: clamp(30px, 3vw, 50px);
  }

  .floating-leaf {
    display: none;
  }

  .trust-item {
    padding-inline: 12px;
  }

  .experience-badge {
    right: -55px;
  }
}

@media (max-width: 900px) {
  .aashvi-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-garden {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: clamp(310px, 58vw, 500px);
    clip-path: ellipse(94% 100% at 50% 0%);
  }

  .hero-garden-image {
    object-position: 57% center;
  }

  .hero-content-shell {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: 56px 7vw 48px;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(28px, 6.8vw, 56px);
  }

  .experience-badge {
    top: -8px;
    right: 7vw;
    width: 142px;
    transform: translateY(-50%) rotate(-2deg);
  }

  .experience-badge.reveal {
    transform: translateY(calc(-50% + 24px)) rotate(-2deg);
  }

  .experience-badge.reveal.is-visible {
    transform: translateY(-50%) rotate(-2deg);
  }

  .badge-leaves {
    display: none;
  }

  .trust-list {
    margin-top: 50px;
  }
}

@media (max-width: 640px) {
  .hero-garden {
    height: 300px;
  }

  .hero-content-shell {
    padding: 64px 22px 38px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero-title {
    margin-top: 20px;
    font-size: clamp(33px, 11vw, 50px);
    line-height: 1.03;
  }

  .hero-title strong {
    white-space: normal;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 13px;
  }

  .hero-button {
    width: 100%;
    min-height: 58px;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid rgba(128, 102, 58, 0.2);
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(128, 102, 58, 0.2);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-item strong {
    font-size: 20px;
  }

  .trust-item small {
    font-size: 13px;
  }

  .experience-badge {
    right: 20px;
    width: 126px;
  }

  .experience-badge strong {
    font-size: 38px;
  }

  .experience-badge small {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
