:root {
  --black: #101416;
  --black2: #1a2021;
  --cream: #ead8b9;
  --cream2: #f7f1e7;
  --gold: #c9a66b;
  --sage: #91a99c;
  --white: #fff;
  --muted: #a8a39a;
  --line: #2d2d2d;
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--black);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
i[class*="fa-"] {
  font-family: "Segoe UI Symbol", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.fa-phone::before { content: "☎"; }
.fa-whatsapp {
  display: inline-grid;
  width: 1.15em;
  height: 1.15em;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.9em;
  line-height: 1;
}
.fa-whatsapp::before {
  content: "WA";
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0;
}
.fa-bars::before { content: "☰"; }
.fa-xmark::before { content: "×"; }
.fa-arrow-right::before { content: "→"; }
.fa-arrow-up::before { content: "↑"; }
.fa-gem::before { content: "◇"; }
.fa-compass-drafting::before { content: "⌖"; }
.fa-shield-halved::before { content: "⬢"; }
.fa-helmet-safety::before { content: "⌒"; }
.fa-bolt::before { content: "ϟ"; }
.fa-faucet-drip::before { content: "♧"; }
.fa-border-all::before { content: "⊞"; }
.fa-layer-group::before { content: "▱"; }
.fa-clock::before { content: "◷"; }
.fa-user-gear::before { content: "⚙"; }
.fa-circle-check::before { content: "✓"; }
.fa-headset::before { content: "◖"; }
.fa-envelope::before { content: "✉"; }
.fa-location-dot::before { content: "●"; }
.whatsapp-icon {
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
  flex: 0 0 auto;
}
.hero-form .whatsapp-icon {
  width: 1.3em;
  height: 1.3em;
}
.contact-info .whatsapp-icon {
  width: 31px;
  height: 31px;
  padding: 5px;
  border: 1px solid #3c3c3c;
  border-radius: 50%;
}
.float-actions .whatsapp-icon {
  width: 26px;
  height: 26px;
}
.container {
  width: min(var(--max), 92%);
  margin: auto;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.serif {
  font-family: "Playfair Display", serif;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 47px;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}
.btn.gold {
  background: var(--cream);
  border-color: var(--cream);
  color: #111;
}
.btn.gold:hover {
  background: #fff;
  border-color: #fff;
}
.btn.dark {
  border-color: #222;
  color: #111;
}
.btn.dark:hover {
  background: #111;
  color: #fff;
}

header {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  background: #34241ca8;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
header.scrolled {
  background: #34241ca8;
}
.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  width: 175px;
  height: 58px;
}
.logo img {
  width: auto;
  height: 80px;
  object-fit: contain;
  object-position: left center;
}
.logo small {
  display: block;
  font: 700 7px/1 "DM Sans";
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 5px;
}
.navlinks {
  list-style: none;
  display: flex;
  gap: 28px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.07em;
}
.navlinks a:hover {
  color: var(--sage);
}
.nav-phone {
  color: #c59b60;
  font-size: 18px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
}

.hero {
  min-height: 790px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgb(8 12 13 / 71%), rgb(8 12 13 / 21%) 52%, rgba(8, 12, 13, 0.3)), url(../images/banner.jpg) center / cover;
  color: #fff;
  overflow: hidden;
}
.hero:before {
  content: none;
}
.hero:after {
  content: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.12fr 0.72fr;
  gap: 60px;
  align-items: center;
  padding: 105px 60px 90px;
}
.hero-copy h1 {
  font: 600 clamp(45px, 5.8vw, 76px) / 0.99 "Manrope", sans-serif;
  letter-spacing: -0.045em;
  margin: 15px 0 20px;
}
.hero-copy h1 em {
  font: 500 italic clamp(45px, 5.8vw, 76px) / 0.99 "Playfair Display", serif;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.hero-copy > p {
  max-width: 650px;
  color: #fff;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.hero-copy .btn:not(.gold) {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.hero-copy .btn:not(.gold):hover {
  background: #fff;
  color: var(--black);
}
.hero-form {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  background: rgba(247, 241, 231, 0.97);
  color: var(--black);
  border: 1px solid rgba(201, 166, 107, 0.7);
  border-radius: 10px;
  padding: 23px;
  box-shadow: 0 25px 70px rgba(8, 12, 13, 0.38);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.hero-form:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--gold);
}
.hero-form:after {
  content: "CONSULTATION";
  position: absolute;
  top: 21px;
  right: 24px;
  color: #8b6a37;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hero-form h2 {
  max-width: 255px;
  padding-top: 4px;
  font-size: 20px;
  margin-bottom: 8px;
}
.hero-form .sub {
  max-width: 310px;
  font-size: 13px;
  color: #5d6763;
  margin-bottom: 24px;
}
.form-row {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-form input,
.hero-form select,
.hero-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d8d0c4;
  color: var(--black);
  padding: 13px;
  font-size: 14px;
  outline: none;
  margin-bottom: 8px;
}
.hero-form textarea {
  height: 82px;
  resize: vertical;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.16);
}
.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #78827e;
  opacity: 1;
}
.hero-form .btn {
  width: 100%;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.hero-form .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}
.form-note {
  font-size: 12px;
  color: #6c716e;
  margin-top: 9px;
  text-align: center;
}

.stats {
  background: var(--cream2);
  color: var(--black);
  padding: 18px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat {
  position: relative;
  display: flex;
  min-height: 139px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px 20px;
  background: #fff;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(16, 20, 22, 0.12);
}
.stat:last-child {
  border: 0;
  border-top: 3px solid #c9a66b;
}
.stat:nth-child(2) {
  /* background: var(--black2); */
  color: #fff;
}
.stat:nth-child(3) {
  background: #ffffff;
}
.stat:nth-child(4) {
  background: #ffffff;
  color: var(--black);
}
.stat small {
  color: var(--sage);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.stat:nth-child(3) small,
.stat:nth-child(4) small {
  color: var(--black);
}
.stat strong {
  display: block;
  font: 500 46px/1 "Playfair Display", serif;
  color: var(--black);
}
.stat:nth-child(2) strong {
  color: #000000;
}
.stat span {
  display: block;
  max-width: 155px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}
.stat:nth-child(2) span {
  color: #000000;
}

.section {
  padding: 95px 0;
}
.about {
  /* background: var(--black2); */
  background-color: var(--cream2);
  background-image: linear-gradient(rgba(16, 20, 22, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 20, 22, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid > .reveal {
  order: 2;
}
.about h2 {
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0 20px;
  font-size: 37px;
  line-height: 44px;
  max-width: 560px;
  color: black;
}
.about p {
  color: #000000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.features {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}
.feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  transition: 0.3s ease;
}
.feature:hover {
  background: rgba(145, 169, 156, 0.1);
  transform: translateX(4px);
}
.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #876b42;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.feature h4 {
  font-size: 16px;
  color: black;
}
.feature p {
  font-size: 15px;
  margin: 2px 0;
  color: #000000;
}
.about-image {
  position: relative;
  order: 1;
  padding: 0 14px 14px 0;
}
.about-image:after {
  content: "";
  position: absolute;
  left: 14px;
  right: 0;
  top: 14px;
  bottom: 0;
  border: 1px solid rgba(199, 157, 93, 0.45);
  z-index: 0;
}
.about-image img {
  height: 550px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.image-label {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.72);
  padding: 11px 14px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-left: 3px solid var(--sage);
}

.portfolio {
  background: var(--cream);
  color: #151515;
}
.portfolio-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}
.section-title {
  font: 600 clamp(33px, 4vw, 52px) / 1.05 "Manrope";
  letter-spacing: -0.04em;
  margin: 9px 0 10px;
}
.portfolio .section-copy {
  color: #171716;
  font-size: 16px;
  max-width: 650px;
}
.projects {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  grid-auto-rows: 245px;
  gap: 9px;
}
.project {
  position: relative;
  overflow: hidden;
}
.project:first-child {
  grid-row: span 2;
}
.project img {
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.project:hover img {
  transform: scale(1.06);
}
.project:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}
.project-caption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 15px;
  color: #fff;
}
.project-caption small {
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream);
}
.project-caption h3 {
  font: 500 19px "Playfair Display", serif;
}
.project-arrow {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  font-size: 11px;
  display: none;
}
.center {
  text-align: center;
  margin-top: 27px;
}

.services {
  color: var(--black);
  background-color: var(--cream2);
  background-image: linear-gradient(rgba(16, 20, 22, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 22, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.service-head .section-copy {
  color: #5d6763;
  max-width: 470px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service {
  background: #fff;
  color: var(--black);
  border: 1px solid rgba(145, 169, 156, 0.45);
  border-radius: 8px;
  /* min-height: 290px; */
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service:hover {
  border-color: var(--sage);
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(16, 20, 22, 0.14);
}
.service > * {
  position: relative;
  z-index: 2;
}
.service-number {
  font: 500 38px "Playfair Display";
  color: var(--gold);
  line-height: 1;
  display: none;
}
.service-icon {
  display: block;
  margin-top: 0;
  color: #c59b60;
  font-size: 36px;
}
.service h3 {
  font: 500 25px "Playfair Display";
  margin: 16px 0 9px;
}
.service p {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  max-width: 330px;
}

.why {
  background: #34241C;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ffffff99;
}
.why-item {
  background: #412e25f5;
  padding: 23px;
  min-height: 145px;
}
.why-item i {
  color: var(--gold);
  font-size: 19px;
}
.why-item h3 {
  font-size: 16px;
  margin: 15px 0 5px;
}
.why-item p {
  font-size: 16px;
  color: #f8f8f8;
  line-height: 1.6;
}

.brands {
  background: var(--cream);
  color: #151515;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
}
.brand {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #222;
}
.brand img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: 0.5s;
}
.brand:hover img {
  filter: brightness(0.9);
  transform: scale(1.05);
}
.brand span {
  position: absolute;
  left: 15px;
  bottom: 13px;
  color: #fff;
  font: 500 19px "Playfair Display";
  z-index: 2;
}

.awards {
  background: #34241C;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
}
.award {
  border: 1px solid #34241C;
  border-radius: 5px;
  padding: 19px;
  min-height: 125px;
  background: #74594b8c;
}
.award-year {
  font-size: 14px;
  color: var(--gold);
}
.award h3 {
  font: 500 17px "Playfair Display";
  margin: 16px 0 4px;
}
.award p {
  font-size: 14px;
  color: #f0f0f0;
  font-size: 16px;
}

.process {
  background: var(--cream);
  color: #151515;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.step {
  background: #fff;
  border-radius: 5px;
  padding: 24px;
  min-height: 205px;
  text-align: center;
}
.step-number {
  font: 600 34px "Manrope";
  text-decoration: underline;
}
.step h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin: 9px 0;
}
.step p {
  font-size: 16px;
  color: #2e2b2b;
  line-height: 1.65;
}

.cta {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.2)),
    url("../images/banner.jpg")
      center/cover;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.cta h2 {
  font: 600 clamp(38px, 5vw, 62px) / 1 "Manrope";
  letter-spacing: -0.04em;
  margin: 12px 0;
}
.cta p {
  max-width: 570px;
  color: #f6f5f5;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq {
  background: #f4f4f2;
  color: #171717;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 65px;
}
.faq-left p {
  font-size: 16px;
  color: #262626;
  line-height: 1.7;
  margin-top: 15px;
}
details {
  border-bottom: 1px solid #ccc;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 17px;
  font-weight: 400;
}
details[open] summary:after {
  content: "-";
}
details p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  padding: 0 30px 16px 0;
}

.contact {
  background: #34241C;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.contact h2 {
  font: 500 42px "Playfair Display";
  margin: 10px 0 15px;
}
.contact-info {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}
.contact-info a,
.contact-info div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #ececec;
  font-size: 14px;
}
.contact-info i {
  width: 31px;
  height: 31px;
  border: 1px solid #3c3c3c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contact-form {
  background: rgb(247 241 231 / 97%);
  border: 1px solid #2d2d2d;
  padding: 25px;
}
.contact-form textarea {
  height: 100px;
  resize: vertical;
}
.contact-form .btn {
  width: 100%;
}

footer {
  background: #34241C;
  border-top: 1px solid #ffffff66;
  padding: 28px 0 24px;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  font: 500 22px "Playfair Display";
  text-align: center;
  margin: 0 auto;
}
.footer-about {
  max-width: 100%;
  margin: 8px auto 0;
  font-size: 12px;
  line-height: 1.5;
  color: #ebebeb;
  font-size: 14px;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 650px;
  text-align: center;
  font-size: 12px;
  color: #e4e4e4;
}
.footer-links a:hover {
  color: var(--gold);
}
footer p {
  font-size: 14px;
  color: #e4e4e4;
}
.socials {
  display: flex;
  gap: 7px;
}
.socials a {
  width: 29px;
  height: 29px;
  border: 1px solid #333;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aaa;
}
.socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  gap: 10px;
}
.float-actions a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.4);
  transition: 0.25s;
}
.float-actions a:hover {
  transform: scale(1.08);
}
.whatsapp {
  background: #20b85a;
}
.call {
  background: #c59b60;
}
.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.75s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 20px);
  background: #fff;
  color: #111;
  padding: 11px 18px;
  font-size: 10px;
  z-index: 3000;
  opacity: 0;
  transition: 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #080808;
    padding: 22px 4%;
    flex-direction: column;
    gap: 17px;
    border-bottom: 1px solid #333;
  }
  .navlinks.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .nav-phone {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 110px;
  }
  .hero-form {
    justify-self: start;
    max-width: 550px;
  }
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .about-grid > .reveal {
    order: 2;
  }
  .projects {
    grid-template-columns: 1fr 1fr;
  }
  .project:first-child {
    grid-row: span 2;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .award-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .logo,
  .logo img {
    width: 145px;
    height: 50px;
  }
  .logo img {
    object-position: left center;
  }
  body {
    padding-bottom: 59px;
  }
  .container {
    width: 94%;
  }
  .nav {
    height: 68px;
  }
  .navlinks {
    top: 68px;
  }
  .hero {
    min-height: auto;
    background-position: 60% center;
  }
  .hero-grid {
    padding: 105px 0 70px;
  }
  .hero-copy h1 {
    font-size: 44px;
  }
  .hero-copy h1 em {
    font-size: 44px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-form {
    padding: 20px;
  }
  .hero-form h2 {
    font-size: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 14px 5px;
  }
  .stat strong {
    font-size: 25px;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .section {
    padding: 65px 0;
  }
  .about-grid {
    gap: 38px;
  }
  .about-image img {
    height: 390px;
  }
  .portfolio-head,
  .service-head {
    display: block;
  }
  .portfolio-head .btn,
  .service-head .btn {
    margin-top: 18px;
  }
  .projects {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .project:first-child {
    grid-row: auto;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 235px;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .brand-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }
  .brand {
    height: 240px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .step {
    min-height: 180px;
  }
  .cta {
    min-height: 500px;
    background-position: 65% center;
  }
  .faq-grid {
    gap: 35px;
  }
  .contact-grid {
    gap: 35px;
  }
  .footer-grid {
    flex-direction: column;
    align-items: center;
  }
  .float-actions {
    right: 13px;
    bottom: 72px;
  }
  .float-actions a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    z-index: 998;
    left: 0;
    right: 0;
    bottom: 0;
    height: 59px;
    background: #111;
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .mobile-actions a:first-child {
    background: #20b85a;
  }
  .mobile-actions a:last-child {
    background: #c59b60;
    color: #111;
  }
}
.footer-logo img {
    margin: 0 auto;
}