:root {
  --ink: #142018;
  --muted: #506057;
  --soft: #f8fafc;
  --line: #dfe7e2;
  --green: #0c7c59;
  --mint: #91e0b7;
  --coral: #ff6b4a;
  --blue: #2f80ed;
  --yellow: #f2c94c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

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

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

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: #dfeee7;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("public/images/balcony-garden-hero.png");
  background-position: 58% center;
  background-size: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.86) 34%, rgba(248, 250, 252, 0.22) 66%, rgba(248, 250, 252, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 82svh;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 40px) 12px;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 28px;
  color: #27382d;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 0;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-coral {
  background: var(--coral);
  color: white;
  box-shadow: 0 10px 24px rgba(255, 107, 74, 0.24);
}

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 35px rgba(20, 32, 24, 0.2);
}

.button-dark:hover {
  background: var(--green);
}

.button-outline {
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button-white {
  background: white;
  color: var(--ink);
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.12);
}

.button-white:hover {
  background: var(--yellow);
}

.hero-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  max-width: 672px;
  padding: 40px 0;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow.light {
  color: var(--mint);
}

.hero-eyebrow {
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  box-shadow: 0 12px 30px rgba(20, 32, 24, 0.08);
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
}

h4 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-tagline {
  max-width: 576px;
  margin: 20px 0 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 16px;
  color: #24362b;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(20, 32, 24, 0.09);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 12px;
}

.proof-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(20, 32, 24, 0.08);
  backdrop-filter: blur(8px);
}

.proof-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.1;
}

.proof-card span {
  display: block;
  margin-top: 4px;
  color: #4d5b51;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 64px clamp(20px, 4vw, 40px);
}

.section > * {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.section-white {
  background: white;
}

.section-soft {
  background: var(--soft);
}

.split-heading {
  display: grid;
  gap: 40px;
  align-items: end;
  grid-template-columns: 0.88fr 1.12fr;
}

.split-heading p,
.harvest-grid p,
.expat-heading p,
.uae-panel p,
.gallery-heading p {
  color: #46564c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 24px;
}

.accent {
  display: block;
  width: 64px;
  height: 8px;
  border-radius: 999px;
}

.accent-coral {
  background: var(--coral);
}

.accent-blue {
  background: var(--blue);
}

.accent-yellow {
  background: var(--yellow);
}

.value-card h3 {
  margin-top: 24px;
  font-size: 26px;
}

.value-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.harvest-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.harvest-grid h2,
.split-heading h2,
.uae-panel h2,
.service-section h2 {
  margin-top: 12px;
}

.crop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.crop-card,
.setup-card {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(20, 32, 24, 0.06);
}

.crop-card {
  border: 1px solid #dce6df;
}

.crop-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe7e2;
}

.crop-card span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #24362b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.expat-panel {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 16px 40px rgba(20, 32, 24, 0.06);
}

.expat-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: end;
}

.expat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.expat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 20px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-top span {
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.expat-card > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.photo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.photo-pill {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  padding: 6px 16px 6px 6px;
  color: #24362b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: inset 0 0 0 1px #dce6df;
}

.photo-pill img {
  width: 64px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.benefit {
  border-radius: 8px;
  padding: 28px;
}

.benefit p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
}

.benefit h3 {
  margin-top: 12px;
  font-size: 32px;
}

.benefit span {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.benefit-blue,
.benefit-coral {
  color: white;
}

.benefit-blue {
  background: var(--blue);
}

.benefit-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.benefit-coral {
  background: var(--coral);
}

.service-section,
.final-cta {
  background: var(--ink);
  color: white;
}

.service-overview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.service-overview > div > p,
.gallery-heading > p {
  color: #c7d8cf;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.included-box {
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.included-box p {
  margin: 0;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.included-box ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  color: #eef7f2;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.included-box li {
  position: relative;
  padding-left: 20px;
}

.included-box li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step-card {
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 24px;
}

.step-card p {
  margin: 0;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.step-card h3 {
  margin-top: 16px;
  font-size: 26px;
}

.step-card span,
.setup-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.layout-gallery {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 40px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
  align-items: end;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.setup-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #253329;
}

.setup-card div {
  padding: 20px;
}

.setup-card p {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.setup-card h4 {
  margin-top: 12px;
}

.uae-section {
  background: white;
}

.uae-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef7f2;
  grid-template-columns: 1fr 0.82fr;
}

.uae-panel > div:first-child {
  padding: clamp(28px, 5vw, 48px);
}

.impact-tiles {
  display: grid;
  border-left: 1px solid #d0ded5;
  background: white;
  grid-template-columns: repeat(2, 1fr);
}

.impact-tiles article {
  padding: 24px;
}

.impact-tiles article:nth-child(1),
.impact-tiles article:nth-child(2) {
  border-bottom: 1px solid #d0ded5;
}

.impact-tiles article:nth-child(1),
.impact-tiles article:nth-child(3) {
  border-right: 1px solid #d0ded5;
}

.impact-tiles p {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.impact-tiles article:nth-child(1) p {
  color: var(--green);
}

.impact-tiles article:nth-child(2) p {
  color: var(--blue);
}

.impact-tiles article:nth-child(3) p {
  color: var(--coral);
}

.impact-tiles article:nth-child(4) p {
  color: #9a7a00;
}

.impact-tiles span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.final-cta {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .split-heading,
  .harvest-grid,
  .expat-heading,
  .service-overview,
  .gallery-heading,
  .uae-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .expat-grid,
  .benefit-grid,
  .setup-grid {
    grid-template-columns: 1fr;
  }

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

  .impact-tiles {
    border-top: 1px solid #d0ded5;
    border-left: 0;
  }

  .final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    display: none;
  }

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

  .proof-grid {
    gap: 8px;
  }

  .proof-card {
    padding: 12px;
  }

  .proof-card span {
    font-size: 11px;
    line-height: 1.35;
  }

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

  .steps-grid,
  .impact-tiles {
    grid-template-columns: 1fr;
  }

  .impact-tiles article {
    border-right: 0 !important;
  }

  .impact-tiles article:not(:last-child) {
    border-bottom: 1px solid #d0ded5;
  }
}
