/* ELITE BUILDERS LTD — HOMEPAGE V2 */

:root {
  --black: #000;
  --black-soft: #070707;
  --gold: #d5a13b;
  --gold-light: #f0c86b;
  --white: #fff;
  --grey: #b9b9b9;
  --border: rgba(213, 161, 59, 0.42);
  --content: min(1240px, calc(100% - 74px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.fixed-gold-frame {
  position: fixed;
  inset: 8px;
  z-index: 9999;
  pointer-events: none;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 8px rgba(213, 161, 59, 0.12);
}

.site-shell {
  width: calc(100% - 24px);
  min-height: calc(100vh - 24px);
  margin: 12px auto;
  background:
    radial-gradient(circle at top left, rgba(213, 161, 59, 0.05), transparent 30%),
    #020202;
}

.content-width {
  width: var(--content);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  background: rgba(2,2,2,.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 150px minmax(0,1fr) auto auto;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 145px;
  transform: translateY(-4px);
}

.main-nav {
  min-width: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.nav-inner a {
  position: relative;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .025em;
}

.nav-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .22s ease;
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 8px;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-symbol {
  color: var(--gold);
  font-size: 9px;
}

.header-contact a:hover {
  color: var(--gold-light);
}

.nav-quote {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* Hero */

.hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("images/hero-house-clean.jpg") right center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.98) 0%,
    rgba(0,0,0,.88) 34%,
    rgba(0,0,0,.44) 58%,
    rgba(0,0,0,.18) 100%
  );
}

.hero-layout {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: center;
  transform: translateY(-42px);
}

.hero-copy { max-width: 590px; }

.eyebrow {
  margin: 0 0 11px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 10px;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

h1 span {
  display: block;
  color: var(--gold);
}

.gold-line {
  width: 58px;
  height: 2px;
  margin: 14px 0;
  background: var(--gold);
}

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

.hero-actions .button {
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  text-transform: uppercase;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .025em;
  transition: .2s ease;
}

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

.button-gold,
.button-dark {
  background: rgba(0,0,0,.54);
  color: var(--gold-light);
  border-color: var(--gold);
}

.hero-right {
  display: grid;
  grid-template-columns: minmax(0,1fr) 132px;
  gap: 22px;
  align-items: center;
}

.guarantee-badge {
  width: 132px;
  justify-self: end;
  align-self: center;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.85));
}

.why-hire {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.why-hire h2 {
  margin: 0 0 10px;
  color: var(--gold-light);
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
}

.why-grid article {
  padding: 6px 8px;
  background: transparent;
  border-left: 1px solid var(--gold);
}

.why-grid h3 {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 10px;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 9px;
  line-height: 1.55;
}

/* Sections */

.section { padding: 28px 0; }

.section-dark {
  background: linear-gradient(180deg, #0b0b0b, #060606);
  border-top: 1px solid rgba(213,161,59,.18);
  border-bottom: 1px solid rgba(213,161,59,.18);
  padding-top: 22px;
  padding-bottom: 18px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 7px;
}

.section-heading-row h2 {
  margin-bottom: 0;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.04;
  text-transform: uppercase;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 7px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 4px;
  text-align: center;
  background: linear-gradient(180deg, #0b0b0b, #070707);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-card:hover { background: #101010; }

.service-card span {
  color: var(--gold);
  font-size: 15px;
}

.service-card h3 {
  margin: 4px 0 0;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 13px;
}

/* Projects */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.project-card {
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 5px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  transition: transform .3s ease;
}

.project-card:hover img { transform: scale(1.04); }

.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px;
}

.project-info h3 {
  margin-bottom: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.project-info p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 8px;
}

.project-info span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 19px;
}

/* Trust */

.trust-strip {
  background: #020202;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

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

.trust-grid article {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-right: 1px solid var(--border);
}

.trust-grid article:last-child { border-right: 0; }

.trust-grid article > span {
  color: var(--gold);
  font-size: 22px;
}

.trust-grid h3 {
  margin-bottom: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 11px;
}

/* Footer */

.site-footer {
  padding: 20px 0 12px;
  background: #010101;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-grid img { width: 138px; }

.footer-grid h3 {
  margin-bottom: 4px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-grid p {
  margin-bottom: 3px;
  color: var(--grey);
  font-size: 13px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
}

.copyright {
  margin: 14px 0 0;
  text-align: center;
  color: #777;
  font-size: 11px;
}

/* Responsive */

@media (max-width: 1180px) {
  .header-row {
    grid-template-columns: 138px minmax(0,1fr) auto;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .header-contact {
    display: none;
  }

  .nav-inner {
    gap: 11px;
  }

  .nav-inner a {
    font-size: 8px;
  }

  .nav-quote {
    font-size: 8px;
    padding: 8px 10px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding: 54px 0 34px;
  }

  .hero-right {
    grid-template-columns: minmax(0,1fr) 122px;
  }

  .guarantee-badge {
    width: 122px;
  }

  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .project-card:last-child {
    grid-column: 1 / -1;
  }

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

  .trust-grid article:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  :root { --content: min(100% - 34px, 760px); }

  .fixed-gold-frame { inset: 4px; }

  .site-shell {
    width: calc(100% - 12px);
    margin: 6px auto;
  }

  .site-header { top: 6px; }

  .header-row {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .brand img {
    width: 138px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .main-nav.open {
    display: block;
  }

  .nav-inner {
    padding: 14px 0 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-inner a {
    font-size: 11px;
  }

  .header-contact,
  .nav-quote {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.34) 0%,
      rgba(0,0,0,.78) 43%,
      rgba(0,0,0,.97) 72%,
      #020202 100%
    );
  }

  .hero-layout {
    min-height: 880px;
    padding: 260px 0 42px;
    align-content: end;
  }

  h1 { font-size: 44px; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }

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

  .guarantee-badge {
    position: absolute;
    top: 30px;
    right: 0;
    width: 145px;
  }

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

  .section-heading-row { align-items: flex-start; }

  .services-grid,
  .projects-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .project-card:last-child,
  .trust-grid article:last-child {
    grid-column: auto;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .footer-grid img { margin-inline: auto; }
  .footer-contact { text-align: center; }
}

@media (max-width: 560px) {
  .brand img { width: 150px; }
  h1 { font-size: 37px; }
  .section { padding: 58px 0; }

  .section-heading-row {
    flex-direction: column;
  }

  .project-links { width: 100%; }
  .outline-link { flex: 1; }
}


.services-section {
  padding-top: 22px;
  padding-bottom: 24px;
}

.services-footer-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.services-footer-link .outline-link {
  padding: 6px 9px;
  font-size: 8px;
}


.footer-company {
  text-align: center;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.footer-contact span {
  color: var(--gold);
}


/* Final compact refinements */
.services-section .section-heading-row,
.projects-section .section-heading-row {
  margin-bottom: 5px;
}

.services-section .eyebrow,
.projects-section .eyebrow {
  font-size: 7px;
  margin-bottom: 2px;
  letter-spacing: .05em;
}

.services-section .section-heading-row h2,
.projects-section .section-heading-row h2 {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .03em;
}

.services-section,
.projects-section {
  padding-top: 16px;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  min-height: 56px;
  padding: 4px 3px;
}

.service-card span {
  font-size: 16px;
}

.service-card h3 {
  margin-top: 3px;
  font-size: 7px;
  white-space: nowrap;
  line-height: 1;
}

.services-footer-link {
  margin-top: 3px;
}

.services-footer-link .outline-link,
.project-links .outline-link {
  padding: 5px 8px;
  font-size: 7px;
}

.projects-grid {
  margin-top: 2px;
}

.project-info {
  padding: 7px 8px;
}

.project-info h3 {
  font-size: 8px;
}

.project-info p {
  font-size: 7px;
}

.project-info span {
  width: 22px;
  height: 22px;
  font-size: 13px;
}

.trust-grid article {
  min-height: 62px;
  padding: 8px 10px;
}

.trust-grid article > span {
  font-size: 18px;
}

.trust-grid h3 {
  font-size: 8px;
}

.trust-grid p {
  font-size: 7px;
}

/* Compact footer aligned to logo baseline */
.site-footer {
  padding: 14px 0 8px;
}

.footer-grid {
  grid-template-columns: 135px 1fr auto;
  gap: 14px;
  align-items: end;
}

.footer-grid img {
  width: 128px;
}

.footer-company {
  text-align: center;
  padding-bottom: 2px;
}

.footer-company h3 {
  font-size: 10px;
  margin-bottom: 1px;
}

.footer-company p {
  font-size: 8px;
  margin-bottom: 1px;
  line-height: 1.2;
}

.footer-contact {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding-bottom: 2px;
}

.footer-contact a {
  font-size: 8px;
  white-space: nowrap;
}

.copyright {
  margin-top: 8px;
  font-size: 8px;
}

/* Keep footer single-line contact until tablet */
@media (max-width: 850px) {
  .hero-layout {
    transform: translateY(-18px);
  }

  .footer-contact {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .hero-layout {
    transform: translateY(-10px);
  }

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

  .service-card h3 {
    white-space: normal;
  }
}


/* Final polish — Version 7 */
.header-contact {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.header-contact a {
  font-size: 9px;
}

/* Improve readability of Why Hire explanations */
.why-grid p {
  font-size: 13px;
  line-height: 1.62;
}

/* Put project buttons beneath the project row, matching services */
.projects-footer-links {
  justify-content: flex-end;
  margin-top: 6px;
}

/* Footer refinements */
.footer-grid {
  align-items: end;
}

.footer-company {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.footer-company h3 {
  margin-bottom: 2px;
}

.footer-contact {
  font-size: 9px;
}

.footer-contact a {
  font-size: 9px;
}

.copyright {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Keep footer content visually centred around the company block */
@media (min-width: 851px) {
  .footer-grid {
    grid-template-columns: 140px 1fr 1fr;
  }

  .footer-company {
    justify-self: center;
  }

  .footer-contact {
    justify-self: end;
  }
}


/* FINAL HOMEPAGE POLISH — VERSION 8 */

/* Why Hire headings: one step larger than explanation text */
.why-grid h3 {
  font-size: 14px;
  line-height: 1.25;
}

.why-grid p {
  font-size: 13px;
}

/* Reduce vertical size of major homepage sections */
.services-section {
  padding-top: 14px;
  padding-bottom: 18px;
}

.projects-section {
  padding-top: 14px;
  padding-bottom: 14px;
}

.trust-strip .trust-grid article {
  min-height: 56px;
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Slightly tighter outer panels */
.services-grid,
.projects-grid,
.trust-grid {
  margin-top: 0;
  margin-bottom: 0;
}

/* Footer compactness and vertical centring */
.site-footer {
  padding-top: 10px;
  padding-bottom: 6px;
}

.footer-grid {
  align-items: center;
  min-height: 66px;
}

.footer-company {
  align-self: center;
  justify-self: center;
  text-align: center;
  transform: translateY(4px);
}

.footer-contact {
  align-self: center;
  justify-self: end;
  transform: translateY(-1px);
}

.copyright {
  margin-top: 2px;
  text-align: center;
}

/* Keep company block directly centred above copyright */
@media (min-width: 851px) {
  .footer-grid {
    grid-template-columns: 140px 1fr 1fr;
  }

  .footer-company {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3;
  }
}


/* V9 Footer alignment */
.footer-grid{
  grid-template-columns:140px 1fr 220px;
}

.footer-company{
  grid-column:2;
  justify-self:center;
  align-self:center;
  text-align:center;
  transform:none;
}

.copyright{
  display:block;
  width:100%;
  text-align:center;
  margin:4px auto 0;
  clear:both;
}

.footer-contact{
  grid-column:3;
  align-self:center;
}

@media (max-width:850px){
  .footer-company{
    transform:none;
  }
}


/* V10 footer final alignment */
.footer-company{
  text-align:center;
}

.copyright{
  display:block;
  text-align:center;
  width:100%;
  margin:2px auto 0;
  padding:0;
  line-height:1.15;
  position:relative;
  top:-6px;
}

.site-footer{
  padding-bottom:2px;
}


/* V11 - Center company block directly over copyright text */
.footer-grid{
  display:grid;
  grid-template-columns:140px 1fr 220px;
}

.footer-company{
  grid-column:2;
  justify-self:center;
  align-self:end;
  text-align:center;
  margin:0 auto;
}

.copyright{
  width:100%;
  text-align:center;
  margin:0 auto;
  padding-top:2px;
  position:relative;
  left:0;
}

.footer-contact{
  grid-column:3;
  justify-self:end;
}


/* V13 - Final footer vertical adjustment */
.footer-grid{
  align-items:center;
}

.footer-company{
  align-self:center;
  transform: translateY(-10px);
}

.footer-contact{
  align-self:center;
  transform: translateY(-10px);
}

.site-footer{
  padding-top:6px;
  padding-bottom:4px;
}


/* V14 - Footer: all three columns perfectly centred vertically */
.footer-grid{
  grid-template-columns: 140px 1fr 1fr;
  align-items: center;
  min-height: 78px;
}

.footer-grid > img{
  align-self: center;
  justify-self: start;
  transform: none;
}

.footer-company{
  align-self: center;
  justify-self: center;
  text-align: center;
  transform: none;
  margin: 0;
  padding: 0;
}

.footer-contact{
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: right;
  transform: none;
  margin: 0;
  padding: 0;
}

.footer-contact a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.site-footer{
  padding-top: 8px;
  padding-bottom: 8px;
}


/* V15 - Center company block horizontally and vertically */
.footer-grid{
  display:grid;
  grid-template-columns:140px 1fr 220px;
}

.footer-company{
  grid-column:2;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  justify-self:center;
  align-self:center;
  margin:0 auto;
  padding:0;
}

.footer-company h3,
.footer-company p{
  width:100%;
  text-align:center;
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.inner-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.inner-hero-image {
  position: absolute;
  inset: 0;
  background: url("images/hero-house-clean.jpg") right center / cover no-repeat;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.98) 0%,
    rgba(0,0,0,.9) 38%,
    rgba(0,0,0,.5) 65%,
    rgba(0,0,0,.15) 100%
  );
}

.inner-hero-layout {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 35px;
  align-items: center;
}

.inner-hero-copy {
  max-width: 700px;
}

.inner-hero-copy h1 {
  font-size: clamp(36px, 4.2vw, 58px);
}

.inner-hero-copy > p:last-of-type {
  max-width: 630px;
  color: #d5d5d5;
  font-size: 15px;
  line-height: 1.7;
}

.inner-guarantee {
  width: 155px;
  justify-self: end;
  filter: drop-shadow(0 15px 26px rgba(0,0,0,.85));
}

.about-main {
  padding: 55px 0 42px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: start;
}

.about-intro h2,
.about-trust h2,
.about-cta h2 {
  margin-bottom: 0;
  font-size: clamp(29px, 3.4vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
}

.about-copy p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.about-values-grid article {
  min-height: 205px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #0b0b0b, #070707);
  border: 1px solid var(--border);
}

.about-values-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
}

.about-values-grid h3 {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 13px;
}

.about-values-grid p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 12px;
  line-height: 1.65;
}

.about-process {
  padding: 34px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.process-grid article {
  min-height: 165px;
  padding: 18px 15px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid b {
  color: var(--gold);
  font-size: 22px;
}

.process-grid h3 {
  margin: 14px 0 6px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 11px;
  line-height: 1.55;
}

.about-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding: 52px 0;
}

.about-trust-copy > p:last-child {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
}

.about-trust-list {
  display: grid;
  gap: 10px;
  align-content: center;
}

.about-trust-list p {
  margin: 0;
  padding: 11px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.025);
  color: #e7e7e7;
  font-size: 13px;
}

.about-cta {
  border-top: 1px solid var(--border);
  background: #060606;
  padding: 30px 0;
}

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

.about-cta-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1050px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .inner-hero {
    min-height: 620px;
  }

  .inner-hero-layout {
    min-height: 620px;
    grid-template-columns: 1fr;
    align-content: end;
    padding-bottom: 40px;
  }

  .inner-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.3) 0%,
      rgba(0,0,0,.8) 48%,
      #020202 100%
    );
  }

  .inner-guarantee {
    position: absolute;
    top: 28px;
    right: 0;
    width: 140px;
  }

  .about-intro,
  .about-trust {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .about-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .about-values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article:last-child {
    grid-column: auto;
  }
}


/* =========================================================
   FINAL RESPONSIVE REFINEMENTS — ABOUT PAGE
   Desktop, tablet and mobile
   ========================================================= */

/* Large desktop */
@media (min-width: 1400px) {
  .inner-hero-layout {
    grid-template-columns: minmax(0, 1fr) 165px;
  }

  .about-main,
  .about-trust {
    padding-top: 48px;
    padding-bottom: 40px;
  }
}

/* Tablet landscape and small laptops */
@media (max-width: 1180px) {
  .inner-hero-layout {
    grid-template-columns: minmax(0, 1fr) 145px;
    gap: 24px;
  }

  .inner-guarantee {
    width: 140px;
  }

  .about-intro,
  .about-trust {
    gap: 40px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-grid article:last-child {
    grid-column: span 2;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .inner-hero {
    min-height: 560px;
  }

  .inner-hero-layout {
    min-height: 560px;
    grid-template-columns: 1fr;
    align-content: end;
    padding-top: 160px;
    padding-bottom: 34px;
  }

  .inner-hero-copy {
    max-width: 100%;
  }

  .inner-hero-copy h1 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .inner-hero-copy > p:last-of-type {
    font-size: 14px;
    line-height: 1.65;
  }

  .inner-guarantee {
    position: absolute;
    top: 28px;
    right: 10px;
    width: 132px;
  }

  .about-intro,
  .about-trust {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-main {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .about-values-grid {
    margin-top: 26px;
  }

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

  .process-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .about-cta-actions {
    width: 100%;
  }

  .about-cta-actions .button {
    flex: 1 1 30%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .inner-hero {
    min-height: 610px;
  }

  .inner-hero-image {
    background-position: 62% center;
  }

  .inner-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.24) 0%,
      rgba(0,0,0,.7) 42%,
      rgba(0,0,0,.97) 74%,
      #020202 100%
    );
  }

  .inner-hero-layout {
    min-height: 610px;
    padding-top: 210px;
    padding-bottom: 28px;
  }

  .inner-hero-copy h1 {
    font-size: 36px;
    line-height: 1;
  }

  .inner-hero-copy > p:last-of-type {
    font-size: 13px;
    line-height: 1.6;
  }

  .inner-guarantee {
    top: 22px;
    right: 6px;
    width: 118px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 7px;
  }

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

  .about-main {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .about-intro h2,
  .about-trust h2,
  .about-cta h2 {
    font-size: 27px;
  }

  .about-copy p,
  .about-trust-copy > p:last-child {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid article {
    min-height: auto;
    padding: 17px 15px;
  }

  .about-values-grid span {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .about-values-grid h3 {
    font-size: 12px;
  }

  .about-values-grid p {
    font-size: 11px;
  }

  .process-grid article,
  .process-grid article:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .about-process {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-trust {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-trust-list p {
    padding: 10px 12px;
    font-size: 11px;
  }

  .about-cta {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .button {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .inner-hero {
    min-height: 580px;
  }

  .inner-hero-layout {
    min-height: 580px;
    padding-top: 195px;
  }

  .inner-hero-copy h1 {
    font-size: 32px;
  }

  .inner-guarantee {
    width: 104px;
  }

  .about-intro h2,
  .about-trust h2,
  .about-cta h2 {
    font-size: 24px;
  }

  .about-values-grid {
    gap: 9px;
  }

  .process-grid article {
    padding: 14px 12px;
  }
}


/* =========================================================
   HOMEPAGE FINAL RESPONSIVE REFINEMENTS
   ========================================================= */

@media (max-width: 1180px) {
  .hero {
    min-height: 720px;
  }

  .hero-layout {
    min-height: 720px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 38px;
    transform: translateY(-18px);
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-right {
    grid-template-columns: minmax(0, 1fr) 125px;
    gap: 18px;
    align-items: center;
  }

  .guarantee-badge {
    width: 125px;
    justify-self: end;
  }

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

  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .project-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 800px;
  }

  .hero-image {
    background-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.26) 0%,
      rgba(0,0,0,.66) 38%,
      rgba(0,0,0,.95) 70%,
      #020202 100%
    );
  }

  .hero-layout {
    min-height: 800px;
    align-content: end;
    padding-top: 210px;
    padding-bottom: 30px;
    transform: translateY(-28px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 7vw, 48px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-actions .button {
    width: 100%;
    white-space: nowrap;
  }

  .hero-right {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 14px;
    align-items: start;
  }

  .guarantee-badge {
    width: 118px;
    position: static;
    align-self: start;
    justify-self: end;
  }

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

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

  .hero-image {
    background-position: 64% center;
  }

  .hero-layout {
    min-height: 900px;
    padding-top: 205px;
    padding-bottom: 26px;
    transform: translateY(-36px);
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
  }

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

  .hero-right {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 10px;
    align-items: start;
  }

  .guarantee-badge {
    width: 104px;
    margin-top: 2px;
  }

  .why-hire h2 {
    text-align: left;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .why-grid article {
    padding: 6px 7px;
  }

  .why-grid h3 {
    font-size: 12px;
  }

  .why-grid p {
    font-size: 11px;
    line-height: 1.5;
  }

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

  .service-card {
    min-height: 62px;
  }

  .service-card h3 {
    white-space: normal;
    font-size: 8px;
  }

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

  .project-card:last-child {
    grid-column: auto;
  }

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

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 860px;
  }

  .hero-layout {
    min-height: 860px;
    padding-top: 190px;
    transform: translateY(-30px);
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-right {
    grid-template-columns: minmax(0, 1fr) 94px;
  }

  .guarantee-badge {
    width: 94px;
  }

  .why-hire h2 {
    font-size: 15px;
  }

  .why-grid h3 {
    font-size: 11px;
  }

  .why-grid p {
    font-size: 10px;
  }
}
