:root {
  /* Brand */
  --gold:        #ffb800;
  --gold-hover:  #ffc933;
  --gold-light:  #ffdca1;
  --gold-deep:   #6b4c00;  /* text on gold buttons */
  --gold-deeper: #412d00;  /* text on gold tags */
  --green:       #0da152;

  /* Neutrals */
  --text-light:  #e2e2e2;
  --sand:        #d5c4ab;  /* body copy */
  --brown:       #514532;  /* borders / dividers */
  --black:       #000000;

  /* Surfaces */
  --bg-darkest:      #121414;
  --bg-dark:         #1a1c1c;
  --bg-card:         #1e2020;
  --bg-contact-card: #282a2b;
  --bg-footer:       #0c0f0f;

  /* Feedback */
  --error: #e05555;

  /* RGB triplets — for rgba() with variable alpha */
  --gold-rgb:       255, 184, 0;
  --gold-light-rgb: 255, 220, 161;
  --green-rgb:      13, 161, 82;
  --brown-rgb:      81, 69, 50;
  --sand-rgb:       213, 196, 171;
  --bg-darkest-rgb: 18, 20, 20;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── TopNavBar ── */

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--black);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.topnav.scrolled {
  background-color: rgba(var(--bg-darkest-rgb), 0.96);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.topnav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.topnav__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.topnav__logo {
  height: 44px;
  width: auto;
}

/* Nav links + CTA */

.topnav__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.topnav__link {
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.topnav__link:hover {
  color: var(--gold);
}

/* CTA button */

.topnav__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: var(--gold);
  color: var(--gold-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  filter: drop-shadow(0 0 7.5px rgba(var(--gold-rgb), 0.2));
  transition: background-color 0.2s ease, filter 0.2s ease;
}

.topnav__cta:hover {
  background-color: var(--gold-hover);
  filter: drop-shadow(0 0 14px rgba(var(--gold-rgb), 0.55));
}

/* ── Hero Section ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
  background-color: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(var(--bg-darkest-rgb), 0.7);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 243px;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: 'Lexend', sans-serif;
  font-weight: 800;
  font-size: 108px;
  line-height: 118px;
  letter-spacing: -1.28px;
  margin-bottom: 36px;
}

.hero__headline-white {
  color: var(--text-light);
}

.hero__headline-gold {
  background: linear-gradient(136.07deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtext {
  color: var(--sand);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  text-align: center;
  max-width: 1184px;
  margin-bottom: 73px;
}

.hero__buttons {
  display: flex;
  align-items: stretch;
  gap: 23px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
}

.hero__btn--gold {
  background-color: var(--gold);
  color: var(--gold-deep);
  padding: 16px 32px;
  filter: drop-shadow(0 0 10px rgba(var(--gold-rgb), 0.3));
  transition: background-color 0.2s ease, filter 0.2s ease;
}

.hero__btn--gold:hover {
  background-color: var(--gold-hover);
  filter: drop-shadow(0 0 16px rgba(var(--gold-rgb), 0.55));
}

.hero__btn--outline {
  border: 2px solid var(--green);
  color: var(--green);
  padding: 14px 34px;
  transition: background-color 0.2s ease;
}

.hero__btn--outline:hover {
  background-color: rgba(var(--green-rgb), 0.1);
}

/* ── Mission & Vision Section ── */

.mv {
  background-color: var(--bg-darkest);
  padding: 120px 0;
}

.mv__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 128px;
}

.mv__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mv__text {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.mv__text--bordered {
  border-left: 2px solid rgba(var(--brown-rgb), 0.3);
  padding-left: 48px;
}

.mv__heading {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
}

.mv__heading-white {
  color: var(--text-light);
}

.mv__heading-green {
  color: var(--green);
}

.mv__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--sand);
}

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

.mv__card {
  height: 384px;
  border-radius: 8px;
  border: 1px solid rgba(var(--brown-rgb), 0.3);
  background-color: var(--bg-card);
  overflow: hidden;
}

.mv__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  display: block;
}

/* ── What We Offer Section ── */

.offer {
  background-color: var(--bg-darkest);
  padding: 119px 0 120px;
}

.offer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.offer__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.offer__heading {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
  text-align: center;
}

.offer__heading-white {
  color: var(--text-light);
}

.offer__heading-green {
  color: var(--green);
}

.offer__subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--sand);
  text-align: center;
  max-width: 768px;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer__card {
  background-color: var(--bg-card);
  border: 1px solid rgba(var(--brown-rgb), 0.3);
  border-radius: 8px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.offer__card-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 41.6px;
  color: var(--text-light);
}

.offer__card-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--sand);
}

/* ── Core Values Section ── */

.values {
  position: relative;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(var(--brown-rgb), 0.2);
  border-bottom: 1px solid rgba(var(--brown-rgb), 0.2);
  padding: 120px 0 121px;
  overflow: hidden;
}

.values::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 30%;
  height: 640px;
  background-color: rgba(var(--gold-light-rgb), 0.05);
  filter: blur(75px);
  border-radius: 12px;
  pointer-events: none;
}

.values__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.values__card {
  position: relative;
  background-color: var(--bg-darkest);
  border: 1px solid rgba(var(--brown-rgb), 0.3);
  border-radius: 8px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.values__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--brown);
}

/* ── Featured Projects Section ── */

.projects {
  position: relative;
  background-color: var(--bg-darkest);
  padding: 119px 0 120px;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 32.07%;
  width: 512px;
  background-color: rgba(var(--gold-light-rgb), 0.05);
  filter: blur(60px);
  border-radius: 12px;
  pointer-events: none;
}

.projects__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.projects__grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 32px;
}

.proj__card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(var(--brown-rgb), 0.2);
  background: rgba(30, 32, 32, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.proj__card--large {
  grid-row: 1 / 3;
}

.proj__img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.proj__card--large .proj__img {
  height: 450px;
}

.proj__card--small .proj__img {
  height: 362px;
}

.proj__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-darkest) 0%, rgba(var(--bg-darkest-rgb), 0.2) 50%, rgba(var(--bg-darkest-rgb), 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proj__content--large {
  padding: 48px;
}

.proj__content--small {
  padding: 24px;
}

.proj__tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16.8px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  width: fit-content;
}

.proj__content--small .proj__tag {
  margin-bottom: 12px;
}

.proj__tag--gold {
  background-color: rgba(var(--gold-light-rgb), 0.9);
  color: var(--gold-deeper);
}

.proj__tag--green {
  background-color: rgba(var(--green-rgb), 0.9);
  color: var(--text-light);
}

.proj__title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 41.6px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.proj__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--sand);
  max-width: 512px;
}

.proj__body--small {
  font-size: 14px;
  line-height: 20px;
  max-width: none;
}

/* ── Lead Gen / Contact Section ── */

.contact {
  background-color: var(--bg-darkest);
  padding: 120px 192px;
}

.contact__card {
  position: relative;
  background-color: var(--bg-contact-card);
  border: 1px solid rgba(var(--brown-rgb), 0.5);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 64px 65px 65px;
  overflow: hidden;
}

.contact__card::before {
  content: '';
  position: absolute;
  top: -128px;
  right: -128px;
  width: 256px;
  height: 256px;
  background-color: rgba(var(--gold-light-rgb), 0.1);
  filter: blur(40px);
  border-radius: 12px;
  pointer-events: none;
}

.contact__card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contact__left {
  flex: 0 0 359px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__heading {
  display: flex;
  flex-direction: column;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
}

.contact__heading-white {
  color: var(--text-light);
}

.contact__heading-green {
  color: var(--green);
}

.contact__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--sand);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 17px;
}

.contact__info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__icon {
  flex-shrink: 0;
}

.contact__info-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--sand);
}

.contact__email {
  text-decoration: none;
}

.contact__email:hover {
  text-decoration: underline;
}

.contact__form {
  flex: 0 0 325px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__field {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-light);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact__field::placeholder {
  color: rgba(var(--sand-rgb), 0.73);
}

.contact__field:focus {
  border-color: var(--gold-hover);
}

.contact__field--textarea {
  height: 150px;
  padding: 14px 24px;
  resize: vertical;
}

.contact__submit {
  width: 100%;
  height: 52px;
  background-color: var(--gold);
  color: var(--bg-darkest);
  border: none;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact__submit:hover {
  background-color: var(--gold-hover);
}

.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact__msg {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  min-height: 0;
  margin: 0;
}

.contact__msg--success {
  color: var(--green);
}

.contact__msg--error {
  color: var(--error);
}

/* ── Footer ── */

.footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--brown);
  padding: 121px 64px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer__brand {
  font-family: 'Lexend', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 41.6px;
  color: var(--green);
  text-align: center;
  margin-bottom: 24px;
}

.footer__divider {
  width: 100%;
  max-width: 480px;
  border: none;
  border-top: 1px solid rgba(var(--brown-rgb), 0.4);
  margin-bottom: 32px;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 8px;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.7px;
  color: var(--sand);
  text-decoration: none;
  padding: 0 4px;
  border-radius: 2px;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--sand);
  text-align: center;
  opacity: 0.70;
  padding-top: 8px;
}

/* ── Privacy Policy Page ── */

.policy {
  background-color: var(--bg-darkest);
  padding: 187px 0 120px;
}

.policy__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.policy__page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.policy__meta {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(var(--sand-rgb), 0.6);
  text-align: center;
}

.policy__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy__h2 {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: var(--green);
}

.policy__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--sand);
}

.policy__text strong {
  color: var(--text-light);
  font-weight: 700;
}

.policy__list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy__list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--sand);
}

.policy__link {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy__link:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Hamburger (hidden on desktop) ── */

.topnav__hamburger {
  display: none;
}

.topnav__mobile-menu {
  display: none;
}

/* ── Mobile ── */

@media (max-width: 768px) {

  /* Nav */
  .topnav__inner {
    padding: 0 20px;
  }

  .topnav__nav {
    display: none;
  }

  .topnav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
  }

  .topnav__mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--black);
    border-top: 1px solid rgba(var(--brown-rgb), 0.3);
    padding: 8px 20px 24px;
  }

  .topnav__mobile-menu.open {
    display: flex;
  }

  .topnav__mobile-link {
    display: block;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.7px;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--brown-rgb), 0.15);
    transition: color 0.2s ease;
  }

  .topnav__mobile-link:hover {
    color: var(--gold);
  }

  .topnav__mobile-cta {
    display: block;
    margin-top: 20px;
    padding: 14px 24px;
    background-color: var(--gold);
    color: var(--gold-deep);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-decoration: none;
    border-radius: 2px;
    text-align: center;
    transition: background-color 0.2s ease;
  }

  .topnav__mobile-cta:hover {
    background-color: var(--gold-hover);
  }

  /* Hero */
  .hero__content {
    padding-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__headline {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
  }

  .hero__subtext {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .hero__subtext br {
    display: none;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero__btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  /* Mission & Vision */
  .mv {
    padding: 64px 0;
  }

  .mv__container {
    padding: 0 20px;
    gap: 56px;
  }

  .mv__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Mission row: text first, card second — swap so image is on top */
  .mv__row:first-child .mv__card {
    order: -1;
  }

  .mv__card {
    height: 220px;
  }

  .mv__text--bordered {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(var(--brown-rgb), 0.3);
    padding-top: 24px;
  }

  .mv__heading {
    font-size: 32px;
    line-height: 40px;
  }

  .mv__body {
    font-size: 16px;
    line-height: 24px;
  }

  /* What We Offer */
  .offer {
    padding: 64px 0;
  }

  .offer__container {
    padding: 0 20px;
    gap: 40px;
  }

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

  .offer__heading {
    font-size: 32px;
    line-height: 40px;
  }

  .offer__subtext {
    font-size: 16px;
    line-height: 24px;
  }

  .offer__card-title {
    font-size: 22px;
    line-height: 30px;
  }

  /* Core Values */
  .values {
    padding: 64px 0;
  }

  .values__container {
    padding: 0 20px;
    gap: 40px;
  }

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

  /* Featured Projects */
  .projects {
    padding: 64px 0;
  }

  .projects__container {
    padding: 0 20px;
    gap: 40px;
  }

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

  .proj__card--large {
    grid-row: auto;
  }

  .proj__card--large .proj__img {
    height: 260px;
  }

  .proj__card--small .proj__img {
    height: 220px;
  }

  .proj__title {
    font-size: 22px;
    line-height: 30px;
  }

  .proj__content--large {
    padding: 24px;
  }

  /* Contact */
  .contact {
    padding: 64px 20px;
  }

  .contact__card {
    padding: 40px 24px;
  }

  .contact__card-body {
    flex-direction: column;
    gap: 40px;
  }

  .contact__left {
    flex: none;
    width: 100%;
  }

  .contact__form {
    flex: none;
    width: 100%;
  }

  .contact__heading {
    font-size: 32px;
    line-height: 40px;
  }

  .contact__desc {
    font-size: 16px;
    line-height: 24px;
  }

  /* Footer */
  .footer {
    padding: 64px 20px;
  }

  .footer__brand {
    font-size: 26px;
    line-height: 34px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-bottom: 16px;
  }

  .footer__copy {
    font-size: 14px;
    line-height: 20px;
  }

  /* Privacy Policy */
  .policy {
    padding: 120px 0 64px;
  }

  .policy__h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .policy__text,
  .policy__list li {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ── Animations & Transitions ── */

/* Parallax: extend bg so translateY doesn't expose edges */
.hero {
  overflow: hidden;
}

.hero__bg {
  top: -40%;
  height: 180%;
  will-change: transform;
}

/* Hero entrance — elements start hidden, revealed when .hero--ready is added by JS */
.hero__headline,
.hero__buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero__subtext {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero--ready .hero__headline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero--ready .hero__subtext {
  opacity: 1;
  transition-delay: 0.9s;
}

.hero--ready .hero__buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

/* Scroll fade-in keyframes */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeftIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRightIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll animation initial states */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right {
  opacity: 0;
}

.anim-fade-up.is-visible {
  animation: fadeUpIn 0.6s ease forwards;
}

.anim-fade-left.is-visible {
  animation: fadeLeftIn 0.7s ease forwards;
}

.anim-fade-right.is-visible {
  animation: fadeRightIn 0.7s ease forwards;
}

/* Card hover lift */
.offer__card,
.values__card,
.proj__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer__card:hover,
.values__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.proj__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .hero__headline,
  .hero__subtext,
  .hero__buttons {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .anim-fade-up,
  .anim-fade-left,
  .anim-fade-right {
    opacity: 1;
  }

  .anim-fade-up.is-visible,
  .anim-fade-left.is-visible,
  .anim-fade-right.is-visible {
    animation: none;
  }

  .hero__bg {
    will-change: auto;
  }
}

/* ── Short viewport (Nest Hub, landscape tablets at 600–700px height) ── */
/* Applies to desktop-width screens only; mobile has its own hero overrides. */
@media (max-height: 700px) and (min-width: 769px) {
  .hero__content {
    padding-top: 90px;
  }

  .hero__headline {
    font-size: 68px;
    line-height: 78px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .hero__subtext {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
  }
}

/* ── Active nav link ── */
.topnav__link--active {
  color: var(--gold);
}

/* ── Form validation ── */
.contact__field-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__error {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
  display: none;
}

.contact__error--visible {
  display: block;
}

.contact__field--invalid {
  border-color: var(--error);
}

/* ── Scroll-to-top button ── */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.2s ease, transform 0.2s ease;
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: var(--gold-hover);
  transform: translateY(-3px);
}

.scroll-top__arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #0a0a0a;
  display: block;
  margin-top: -2px;
}

/* ── Tablet (iPad Air and similar, 769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Nav: tighten inner padding */
  .topnav__inner {
    padding: 0 40px;
  }

  /* Hero */
  .hero__content {
    padding-top: 160px;
  }

  .hero__headline {
    font-size: 80px;
    line-height: 90px;
  }

  /* Mission & Vision */
  .mv {
    padding: 80px 0;
  }

  .mv__container {
    padding: 0 40px;
    gap: 80px;
  }

  /* What We Offer */
  .offer {
    padding: 80px 0;
  }

  .offer__container {
    padding: 0 40px;
    gap: 48px;
  }

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

  /* Core Values */
  .values {
    padding: 80px 0;
  }

  .values__container {
    padding: 0 40px;
    gap: 48px;
  }

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

  /* Featured Projects */
  .projects {
    padding: 80px 0;
  }

  .projects__container {
    padding: 0 40px;
    gap: 48px;
  }

  /* Contact: stack panels */
  .contact {
    padding: 80px 40px;
  }

  .contact__card {
    padding: 48px 40px;
  }

  .contact__card-body {
    flex-direction: column;
    gap: 40px;
  }

  .contact__left {
    flex: none;
    width: 100%;
  }

  .contact__form {
    flex: none;
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 80px 40px;
  }
}
