* {
  box-sizing: border-box;
}

:root {
  --orange: #ef7f1a;
  --orange-dark: #c95f00;
  --orange-light: #fff1e4;

  --grey: #676766;
  --grey-dark: #333332;
  --grey-mid: #858583;
  --grey-light: #ececea;

  --off-white: #f7f7f5;
  --white: #ffffff;
  --text: #3f3f3e;
  --line: rgba(103, 103, 102, 0.22);
  --shadow: 0 16px 40px rgba(42, 42, 41, 0.08);
}

html {
  scroll-behavior: smooth;
}

#about,
#services {
  scroll-margin-top: 130px;
}


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1600px, calc(100% - 120px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 241, 228, 0.80)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(239, 127, 26, 0.045) 0,
      rgba(239, 127, 26, 0.045) 1px,
      transparent 1px,
      transparent 14px
    );
  border-bottom: 1px solid rgba(103, 103, 102, 0.14);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  display: block;
  flex: 0 0 auto;
}

.site-logo {
  width: 200px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--grey);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--grey-dark);
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: #ffffff;
}



.hero-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 55px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  
  text-align: left;
}


.hero-placeholder {
  min-height: 520px;
  border: none;
  background:
    linear-gradient(
      rgba(239, 127, 26, 0.08),
      rgba(103, 103, 102, 0.08)
    ),
    repeating-linear-gradient(
      45deg,
      #f4f1ed,
      #f4f1ed 14px,
      #ece8e3 14px,
      #ece8e3 28px
    );
}

.hero-image-wrap {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--grey-dark);
  line-height: 1.15;
}

h1 {
  margin-bottom: 24px;
  font-size: 3.9rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(1.05rem, 3.7vw, 3.0rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 650px;
  margin: 0;
  color: var(--grey);
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;

  color: var(--orange);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--orange);
  border-radius: 4px;

  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;

  background: transparent;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;

  transition: color 0.45s ease;
}

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

.button::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -45px;
  transform: skewX(45deg);
  background-color: var(--orange);
  z-index: -1;
  transition: width 0.45s ease;
}

.button:hover::before {
  width: 165%;
}

.button-primary,
.button-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}


/* IMAGE PLACEHOLDER */

.image-placeholder {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(103, 103, 102, 0.45);
  background:
    linear-gradient(
      135deg,
      rgba(239, 127, 26, 0.06),
      rgba(103, 103, 102, 0.06)
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 14px,
      rgba(103, 103, 102, 0.035) 14px,
      rgba(103, 103, 102, 0.035) 28px
    );
  color: var(--grey);
  text-align: center;
}

.image-placeholder span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.image-placeholder small {
  margin-top: 8px;
}


/* LEGACY STRIP */

/* LEGACY STRIP */

.legacy-strip {
  background: var(--grey-dark);
  color: var(--white);
}
.legacy-strip .container {
  width: 100%;
  max-width: none;
}

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

.legacy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

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

.legacy-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex: 0 0 auto;
}

.legacy-item strong,
.legacy-item span {
  display: block;
}

.legacy-item strong {
  color: var(--orange);
  font-size: 1.45rem;
  line-height: 1.2;
}

.legacy-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}


/* GENERAL SECTIONS */

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--off-white);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.two-column p {
  margin-top: 0;
  color: var(--grey);
  font-size: 1.05rem;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange-dark);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading > p:last-child {
  color: var(--grey);
  font-size: 1.05rem;
}


/* SERVICES */

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

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 127, 26, 0.45);
  box-shadow: var(--shadow);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card p {
  margin-bottom: 0;
  color: var(--grey);
}

.service-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--grey-dark);
  color: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-grid article {
  text-align: center;
}
.service-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 10px 10px 0 var(--orange);
}

.service-grid article h3 {
  margin-bottom: 18px;
  color: var(--orange);
}

.service-grid article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}
.service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 24px;
}


/* ABOUT SECTION */

.about-section {
  padding: 64px 0;
  padding-bottom: 25px;
  background: #ffffff;
}
#services {
  padding-top: 35px;
}



.about-layout {
  display: grid;
  grid-template-columns: 46% 44%;
  justify-content: space-between;
  align-items: center;
}

.about-heading-block {
  max-width: 620px;
  order: 2;
}

.about-heading-block h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.about-text-block {
  max-width: 820px;
  order: 1;
}

.about-text-block p {
  margin: 0 0 18px;
  color: var(--grey);
  font-size: 1.15rem;
  line-height: 1.65;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}
/* PROCESS */

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--orange);
  font-weight: 800;
}

.process-list strong {
  font-size: 1.08rem;
}


/* STRUCTURES HANDLED */

.section-dark {
  background: var(--grey-dark);
}

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

.structure-section {
  background: #ffffff;
}

.structure-heading {
  max-width: none;
  text-align: right;
  margin-left: auto;
}

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

.structure-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--grey-dark);
  color: var(--white);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.structure-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 10px 10px 0 var(--orange);
}

.structure-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.structure-grid article h3 {
  margin-bottom: 18px;
  color: var(--orange);
}

.structure-grid article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

#services {
  padding-bottom: 35px;
}

.structure-section {
  padding-top: 35px;
}

/* VISION AND MISSION */

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vision-grid article {
  padding: 20px 54px 20px 0;
}

.vision-grid article + article {
  padding-left: 54px;
  border-left: 1px solid var(--line);
}

.vision-grid p:last-child {
  color: var(--grey);
  font-size: 1.04rem;
}


/* CTA */

.cta-section {
  padding: 62px 0;
  background: var(--orange-light);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}


/* FOOTER */

.site-footer {
  padding: 64px 0 24px;
  background: #20201f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 230px;
  height: 120px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.9rem;
}


/* TABLET */

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .hero-grid,
  .two-column,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .two-column {
    gap: 20px;
  }

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

  .vision-grid article,
  .vision-grid article + article {
    padding: 20px 0;
    border-left: 0;
  }

  .vision-grid article + article {
    border-top: 1px solid var(--line);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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


/* MOBILE */

@media (max-width: 640px) {
  .container {
  width: calc(100% - 60px);
  margin: 0 auto;
  }

  .header-inner {
    min-height: 90px;
  }

  .site-logo {
    width: 220px;
    height: 70px;
  }

  .site-nav {
    top: 90px;
  }

  .hero,
  .section {
    padding: 68px 0;
  }

  .legacy-grid,
  .service-grid,
  .structure-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legacy-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .legacy-grid div:last-child {
    border-bottom: 0;
  }

  .image-placeholder {
    min-height: 260px;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    min-height: 96px;
  }
}


.final-cta {
  padding: 70px 0;
  background: #ffffff;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 55px;
}

.final-cta h2 {
  margin: 0;
  color: var(--grey-dark);
}

.structure-section {
  padding-bottom: 20px;
}

.final-cta {
  padding-top: 20px;
}


.orange-text {
  color: var(--orange);
  position: relative;
  display: inline-block;
  cursor: default;
}

.orange-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 4px;
  background: var(--grey);
  transition: width 0.25s ease;
}

.orange-text:hover::after {
  width: 100%;
}

/* CONTACT PAGE */

.contact-hero {
  padding: 35px 0 20px;
  background: #ffffff;
}
.contact-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero h2 {
  margin-bottom: 22px;
}

.contact-hero p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--grey);
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-section {
  padding: 20px 0 45px;
  background: #ffffff;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: 52% 40%;
  justify-content: space-between;
  align-items: start;
  gap: 60px;
}

.contact-form-wrap {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--off-white);
}

.contact-form-wrap h3,
.contact-details-wrap h3 {
  margin-bottom: 18px;
  color: var(--grey-dark);
}

.contact-form-intro {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--grey);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
  color: var(--grey-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(103, 103, 102, 0.28);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  margin-top: 12px;
}

.contact-details-wrap {
  padding-top: 4px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.contact-card {
  padding: 22px;
  background: var(--grey-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 10px 10px 0 var(--orange);
}

.contact-card h3 {
  margin-bottom: 16px;
  color: var(--orange);
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-card a:hover {
  color: var(--white);
}

.form-status {
  margin-top: 14px;
  color: var(--grey-dark);
  font-weight: 700;
}