/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #3B39FF;
  --black: #333333;
  --green: #4FFF96;
  --cta-text: #0A211F;
  --yellow: #FFFCBE;
  --yellow-light: #FFFEF3;
  --title-color: #4D4D4D;
  --meta-color: #727272;
  --about-label: #D8FF85;
  --about-stroke: #FFF86B;
  --stroke-30: rgba(51, 51, 51, 0.3);
  --page-padding: 80px;
  --max-content: 1400px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  background-color: var(--yellow);
  color: var(--black);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/*
  NOTE: Degular Display is a paid font (by OH no Type Co).
  Add your webfont files to a /fonts folder and uncomment below:

  @font-face {
    font-family: 'Degular Display';
    src: url('fonts/DegularDisplay-Medium.woff2') format('woff2'),
         url('fonts/DegularDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Degular Display';
    src: url('fonts/DegularDisplay-Bold.woff2') format('woff2'),
         url('fonts/DegularDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
*/

/* ===== NAVBAR (sticky) ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--page-padding);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--yellow);
}

.logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== CTAs ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 222px;
  height: 47px;
  padding: 0 32px;
  background-color: var(--green);
  color: var(--cta-text);
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid var(--green);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-cta:hover {
  background-color: var(--yellow-light);
  border-color: var(--green);
  color: var(--cta-text);
}

/* ===== HERO ===== */
.hero {
  padding: 60px var(--page-padding) 40px;
}

.hero-content {
  max-width: 900px;
}

.hero-heading {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 1.05;
  color: var(--title-color);
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  word-spacing: 0.02em;
}

.hero-heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--blue);
  letter-spacing: 0.01em;
  margin-left: 0.05em;
}

.hero-subtext {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--black);
  max-width: 620px;
  margin-bottom: 36px;
}

/* ===== HERO IMAGE — full bleed, overlaps into next section ===== */
.hero-image {
  width: 100vw;
  position: relative;
  left: 0;
  z-index: 2;
}

.hands-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  background-color: var(--yellow-light);
  padding: 100px var(--page-padding) 120px;
  position: relative;
  z-index: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-content);
  margin: 0 auto;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}

.project-card:hover .project-img-wrapper {
  border-color: var(--blue);
}

.project-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 10;
}

.project-meta {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--meta-color);
  margin-bottom: 6px;
}

.project-title {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: var(--blue);
  padding: 100px var(--page-padding) 120px;
}

.about-inner {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 5%;
  max-width: var(--max-content);
  margin: 0 auto;
  align-items: start;
}

/* -- About images column -- */
.about-images {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-img-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.about-img-card:hover {
  border-color: var(--about-stroke);
}

/* First image: 785 x 393 from Figma */
.about-img-card--tall .about-img {
  aspect-ratio: 785 / 393;
}

/* Second image: 785 x 257 from Figma */
.about-img-card--wide .about-img {
  aspect-ratio: 785 / 257;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-img-card:hover .about-img-overlay {
  opacity: 1;
}

.about-img-label {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--about-label);
}

.about-img-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- About text column -- */
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-heading {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  color: var(--yellow-light);
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

.about-body {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--yellow-light);
  margin-bottom: 20px;
}

.about-body:last-of-type {
  margin-bottom: 36px;
}

/* ===== WHY US SECTION ===== */
.why-us {
  background-color: var(--yellow-light);
  padding: 100px var(--page-padding) 120px;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: var(--max-content);
  margin: 0 auto;
  align-items: start;
}

.why-us-heading {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -1.5px;
  padding-left: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  justify-items: end;
}

.value-card {
  width: 100%;
  max-width: 307px;
  height: 376px;
  border-radius: 16px;
  border: 1px solid var(--stroke-30);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.value-card--green {
  background-color: var(--green);
}

.value-card--yellow {
  background-color: var(--yellow);
}

.value-icon {
  margin-bottom: 24px;
}

.value-icon svg {
  width: 45px;
  height: 45px;
}

.value-description {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  flex-grow: 1;
}

.value-divider {
  width: 60%;
  height: 1px;
  background-color: var(--stroke-30);
  margin: 24px 0 16px;
}

.value-label {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--black);
  letter-spacing: -0.5px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--green);
  padding: 100px var(--page-padding) 120px;
}

.services-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.services-heading {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -1.5px;
  margin-bottom: 60px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 48px;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
  text-decoration: none;
  color: inherit;
}

.service-row + .service-row {
  border-top: 1px solid var(--stroke-30);
}

.service-number {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--blue);
  font-style: italic;
  align-self: start;
  padding-top: 4px;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-title {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.service-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--yellow-light);
  border: none;
  border-radius: 8px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}

.service-subtitle {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}

.service-description {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  max-width: 720px;
}

.service-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-chevron svg {
  width: 28px;
  height: 28px;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background-color: var(--yellow-light);
  padding: 100px var(--page-padding) 120px;
}

.pricing-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.pricing-heading {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -1.5px;
  margin-bottom: 60px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 54px;
  margin-bottom: 48px;
}

/* -- Pricing card shared -- */
.pricing-card {
  background-color: var(--yellow);
  border: 2px solid #69FF9C;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--standard {
  width: 316px;
  min-height: 556px;
}

.pricing-card--featured {
  width: 345px;
  min-height: 607px;
}

/* Hover banner */
.pricing-card-hover-banner {
  background-color: var(--green);
  padding: 12px 24px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.pricing-card:hover .pricing-card-hover-banner {
  max-height: 60px;
  opacity: 1;
  padding: 12px 24px;
}

.pricing-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Standard card typography */
.pricing-card--standard .pricing-card-title {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 16px;
}

.pricing-card--standard .pricing-price {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 60px;
  color: var(--blue);
  letter-spacing: -1px;
}

.pricing-card--standard .pricing-per {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #B1B1B1;
  margin-left: 8px;
}

.pricing-card--standard .pricing-feature {
  font-size: 18px;
}

.pricing-card--standard .pricing-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Featured card typography */
.pricing-card--featured .pricing-card-title {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-price {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 64px;
  color: var(--blue);
  letter-spacing: -1px;
}

.pricing-card--featured .pricing-per {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #B1B1B1;
  margin-left: 8px;
}

.pricing-card--featured .pricing-feature {
  font-size: 20px;
}

.pricing-card--featured .pricing-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Shared pricing elements */
.pricing-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background-color: var(--stroke-30);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: auto;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-weight: 400;
  color: var(--black);
}

.pricing-extras {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.pricing-feature--extra {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-weight: 400;
  color: var(--black);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 222px;
  height: 47px;
  padding: 0 32px;
  background-color: var(--yellow-light);
  color: var(--black);
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid #69FF9C;
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
}

.pricing-cta:hover {
  background-color: var(--green);
}

/* -- Personalised package -- */
.pricing-custom {
  background-color: var(--yellow);
  border: 2px solid #69FF9C;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1085px;
  margin: 0 auto;
}

.pricing-custom-text {
  flex: 1;
}

.pricing-custom-title {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 12px;
}

.pricing-custom-description {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--blue);
  padding: 80px var(--page-padding) 80px;
}

.footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-heading {
  font-family: 'Degular Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.05;
  color: var(--yellow);
  letter-spacing: -1.5px;
}

.footer-enquiries {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-label {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--yellow);
}

.footer-email {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--yellow);
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--yellow);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
}

.footer-copyright {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--yellow);
}

/* ===== PROJECT DETAIL PAGE ===== */
.project-detail {
  padding: 60px var(--page-padding) 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-detail-header {
  margin-bottom: 40px;
}

.project-detail-title {
  font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.5px;
}

.project-detail-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}

.project-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.project-detail-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  max-width: 720px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root {
    --page-padding: 24px;
  }

  .navbar {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 48px var(--page-padding) 32px;
  }

  .hero-heading {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .projects {
    padding: 60px var(--page-padding) 80px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-title {
    font-size: 18px;
  }

  .about {
    padding: 60px var(--page-padding) 80px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-heading {
    font-size: 42px;
  }

  .about-body {
    font-size: 18px;
  }

  .about-img-label {
    font-size: 18px;
  }

  .why-us {
    padding: 60px var(--page-padding) 80px;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-heading {
    font-size: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-card {
    max-width: 100%;
  }

  .value-description {
    font-size: 18px;
  }

  .project-detail {
    padding: 40px var(--page-padding) 80px;
  }

  .services {
    padding: 60px var(--page-padding) 80px;
  }

  .services-heading {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .service-row {
    grid-template-columns: 48px 1fr 32px;
    gap: 16px;
    padding: 32px 0;
  }

  .service-number {
    font-size: 22px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-subtitle,
  .service-description {
    font-size: 18px;
  }

  .service-chevron {
    padding-top: 32px;
  }

  .pricing {
    padding: 60px var(--page-padding) 80px;
  }

  .pricing-heading {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card--standard,
  .pricing-card--featured {
    width: 100%;
    max-width: 345px;
  }

  .pricing-custom {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .pricing-cta {
    align-self: center;
  }

  .footer {
    padding: 60px var(--page-padding) 60px;
  }

  .footer-inner {
    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-heading {
    font-size: 48px;
  }
}
