:root {
  --navy-950: #171b2a;
  --navy-900: #1f2436;
  --charcoal-900: #202020;
  --sand-300: #e0c4a6;
  --sand-200: #f0d3b2;
  --white: #ffffff;
  --container: min(1240px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 5% 20%, #3e2f28 0%, #191917 36%, #101010 74%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.top-strip {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  background: linear-gradient(90deg, #1e2438 0%, #191f33 60%, #151b2c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-strip-inner {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.top-strip-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.top-strip-inner p a {
  margin-left: 8px;
  font-weight: 500;
  color: var(--white);
}

.social-links {
  justify-self: end;
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--sand-300);
}

.site-header {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.site-header .container.nav-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 8px;
  padding-right: 24px;
}

.nav-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: clamp(160px, 15vw, 220px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
  transform: scale(2.75);
  transform-origin: left center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 26px);
  font-weight: 600;
  font-size: 1.12rem;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  background: var(--sand-300);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.search-btn,
.menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.search-btn {
  font-size: 1.25rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-image:
    linear-gradient(120deg, rgba(8, 8, 8, 0.54) 12%, rgba(8, 8, 8, 0.38) 48%, rgba(12, 12, 12, 0.72) 100%),
    url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.58) 72%, rgba(0, 0, 0, 0.66) 100%);
  z-index: 0;
}

.hero-shape-left,
.hero-shape-mid {
  position: absolute;
  top: 128px;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-left {
  left: -80px;
  width: 34vw;
  background: rgba(242, 245, 250, 0.2);
  clip-path: polygon(0 0, 72% 0, 44% 100%, 0 100%);
}

.hero-shape-mid {
  left: 38vw;
  width: 16vw;
  background: rgba(0, 0, 0, 0.35);
  clip-path: polygon(8% 0, 100% 0, 76% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 220px;
  padding-bottom: 140px;
  max-width: 760px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.is-loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: clamp(2rem, 2.6vw, 2.25rem);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.85rem, 8.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero-copy {
  margin: 22px 0 30px;
  max-width: 680px;
  font-size: clamp(1.03rem, 1.95vw, 2rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.93);
}

.hero-cta {
  display: inline-block;
  background: var(--sand-300);
  color: #121212;
  letter-spacing: 0.7em;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 28px 16px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-cta:hover {
  background: var(--sand-200);
  transform: translateY(-2px);
}

.site-section {
  position: relative;
  padding: 92px 0;
}

.about-section {
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.94) 0%, rgba(21, 21, 21, 0.97) 100%);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  margin: 8px 0 14px;
}

.section-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.5;
}

.section-eyebrow {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sand-300);
  font-size: 0.83rem;
}

.about-points {
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.about-points li {
  margin: 8px 0;
}

.about-visual {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-we-do-section {
  background:
    radial-gradient(120% 140% at 0% 0%, #ffffff 0%, #f6f3ee 42%, #ece7df 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 65%);
  padding-top: 82px;
  color: #152238;
}

.what-we-do-title {
  margin: 0 auto 40px;
  max-width: 420px;
  border: 1px solid rgba(25, 33, 45, 0.12);
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 22px 18px;
}

.what-we-do-title h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.what-card {
  position: relative;
  isolation: isolate;
  background: #dadde0;
  border: 0;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(20, 25, 34, 0.1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.what-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 25, 34, 0.16);
}

.what-card:hover::after {
  opacity: 1;
}

.what-card-media {
  position: relative;
}

.what-card-media img {
  width: 100%;
  height: 258px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.what-card:hover .what-card-media img {
  transform: scale(1.05);
  filter: contrast(1.03) saturate(1.04);
}

.what-card-no {
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.what-card-body {
  padding: 18px 20px 20px;
}

.what-card-body h3 {
  margin: 0;
  color: #18273c;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
}

.what-card[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.975);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.what-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(2) {
  transition-delay: 0.05s;
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(3) {
  transition-delay: 0.1s;
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(4) {
  transition-delay: 0.15s;
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(5) {
  transition-delay: 0.2s;
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(6) {
  transition-delay: 0.25s;
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(7) {
  transition-delay: 0.3s;
}

.what-we-do-grid .what-card[data-reveal]:not(.is-visible):nth-child(8) {
  transition-delay: 0.35s;
}

.services-section,
.blog-section,
.faq-section {
  background: #111214;
}

.services-section {
  background: #dcdcdc;
  color: #152238;
}

.services-section .section-eyebrow {
  color: #485468;
}

.services-section .section-heading {
  margin-bottom: 30px;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-tile {
  position: relative;
  background: #cfd3d6;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(15, 24, 38, 0.12);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.service-tile::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -52%;
  width: 38%;
  height: 140%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(12deg) translateX(0);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.75s ease;
  pointer-events: none;
  z-index: 2;
}

.service-tile:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(15, 24, 38, 0.2);
}

.service-tile:hover::before {
  opacity: 1;
  transform: rotate(12deg) translateX(280%);
}

.service-media {
  width: 100%;
  height: 292px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.service-tile:hover .service-media {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.03);
}

.service-body {
  position: relative;
  z-index: 3;
  padding: 17px 18px 20px;
}

.service-body h3 {
  margin: 0 0 8px;
  color: #17253a;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.14rem, 1.4vw, 1.34rem);
}

.service-body p {
  margin: 0;
  color: #1f2b3d;
  line-height: 1.4;
  font-size: 0.92rem;
}

.projects-section {
  background: #e7e7e7;
  color: #1b1f25;
}

.projects-section .section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.projects-section .section-eyebrow {
  color: #b99678;
}

.contact-section {
  background: linear-gradient(180deg, #17191f 0%, #121316 100%);
}

.project-filter {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 9px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 24, 33, 0.08);
}

.project-filter-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 11px 14px;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a2a2a;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.project-filter-btn:hover {
  color: #caa88b;
}

.project-filter-btn.is-active {
  color: #d0ac8f;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.project-shot {
  margin: 0;
  background: #d8d8d8;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 20px rgba(15, 22, 30, 0.08);
  transition: opacity 0.34s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  transition-delay: var(--filter-stagger, 0ms), var(--filter-stagger, 0ms), 0ms;
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: transform, opacity;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-shot:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15, 22, 30, 0.14);
}

.project-shot:hover img {
  transform: scale(1.04);
}

.project-shot.is-filtering-in,
.project-shot.is-filtering-out {
  opacity: 0;
  transform: translateY(10px) scale(0.965);
  pointer-events: none;
}

.project-shot.is-hidden {
  display: none;
}

.section-heading {
  margin-bottom: 26px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card,
.shop-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px;
}

.post-card h3,
.shop-card h3,
.project-meta h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
}

.post-card p,
.shop-card p,
.project-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.post-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--sand-300);
  font-weight: 600;
}

.shop-card strong {
  display: block;
  margin-top: 12px;
  color: var(--sand-200);
}

.faq-wrap {
  max-width: 860px;
  display: grid;
  gap: 12px;
}

.faq-wrap details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-wrap p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-form {
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 8px;
}

.contact-form label {
  margin-top: 4px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  padding: 10px 12px;
}

.contact-form button {
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  background: var(--sand-300);
  color: #161616;
  padding: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.testimonials-section {
  background:
    radial-gradient(130% 180% at 100% 0%, rgba(222, 196, 168, 0.24) 0%, rgba(222, 196, 168, 0) 54%),
    linear-gradient(180deg, #15171b 0%, #101114 100%);
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 28px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 22px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  right: 14px;
  top: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: rotate(13deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::after {
  animation: testimonialSweep 0.9s ease;
}

.testimonial-rating {
  margin: 0 0 12px;
  color: #e5c6a8;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-block;
  animation: testimonialStarsGlow 2.2s ease-in-out infinite;
}

.testimonial-quote {
  margin: 0 0 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, #e6cab0 0%, #cda984 100%);
  color: #1a1a1a;
}

.testimonial-client h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.testimonial-client p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.testimonial-card[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.testimonial-grid .testimonial-card[data-reveal]:not(.is-visible):nth-child(2) {
  transition-delay: 0.08s;
}

.testimonial-grid .testimonial-card[data-reveal]:not(.is-visible):nth-child(3) {
  transition-delay: 0.16s;
}

.testimonial-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes testimonialSweep {
  0% {
    opacity: 0;
    transform: rotate(13deg) translateX(0);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(13deg) translateX(360%);
  }
}

@keyframes testimonialStarsGlow {
  0%,
  100% {
    color: #e5c6a8;
    text-shadow: 0 0 0 rgba(229, 198, 168, 0);
  }

  50% {
    color: #f4d8bc;
    text-shadow: 0 0 10px rgba(229, 198, 168, 0.3);
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #1d2231 0%, #171b29 100%);
  color: rgba(255, 255, 255, 0.86);
  padding: 72px 0 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.footer-logo {
  width: 210px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #171b29;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #e0c4a6;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  margin: 0 0 16px;
  color: #dfb998;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.28rem, 1.6vw, 1.6rem);
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links a {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: #dfb998;
  padding-left: 4px;
}

.footer-links a:last-child {
  border-bottom: 0;
}

.footer-contact p,
.footer-contact a {
  display: block;
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover {
  color: #dfb998;
}

.footer-newsletter {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-newsletter h3 {
  margin-bottom: 8px;
}

.footer-newsletter p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 58px;
}

.footer-newsletter-form input {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  padding: 0 16px;
  height: 58px;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.footer-newsletter-form button {
  border: 0;
  background: #fff;
  color: #12182a;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-newsletter-form button:hover {
  background: #e4cab0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.services-showcase .service-tile[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.45s ease;
}

.services-showcase .service-tile[data-reveal]:not(.is-visible):nth-child(2) {
  transition-delay: 0.08s;
}

.services-showcase .service-tile[data-reveal]:not(.is-visible):nth-child(3) {
  transition-delay: 0.16s;
}

.services-showcase .service-tile[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .top-strip-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 10px 0;
  }

  .site-header {
    top: 88px;
  }

  .hero-shape-left,
  .hero-shape-mid {
    top: 168px;
  }

  .main-nav {
    gap: 16px;
    font-size: 1rem;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 60;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(17, 18, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.nav-open .main-nav {
    max-height: 430px;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 940px;
    align-items: center;
  }

  .hero-shape-left {
    width: 52vw;
  }

  .hero-shape-mid {
    left: 54vw;
    width: 22vw;
  }

  .hero-content {
    padding-top: 260px;
    padding-bottom: 90px;
  }

  .section-grid,
  .contact-grid,
  .three-col,
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .service-media {
    height: 320px;
  }

  .project-filter {
    margin-bottom: 24px;
  }

  .project-filter-btn {
    font-size: 1rem;
    padding: 9px 12px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-newsletter h3 {
    font-size: 1.35rem;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr 52px;
  }

  .footer-newsletter-form input {
    height: 52px;
  }

  .what-card-media img {
    height: 236px;
  }

  .site-section {
    padding: 74px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(92vw, 560px);
  }

  .top-strip-inner {
    font-size: 0.82rem;
    text-align: center;
  }

  .site-header {
    top: 98px;
  }

  .nav-wrap {
    min-height: 80px;
  }

  .site-header .container.nav-wrap {
    padding-left: 4px;
    padding-right: 12px;
  }

  .logo-image {
    width: auto;
    max-height: 44px;
    transform: scale(2.1);
  }

  .hero {
    min-height: 780px;
  }

  .hero-shape-left,
  .hero-shape-mid {
    top: 178px;
  }

  .hero-shape-left {
    width: 68vw;
    clip-path: polygon(0 0, 84% 0, 52% 100%, 0 100%);
  }

  .hero-shape-mid {
    left: 62vw;
    width: 28vw;
  }

  .hero-content {
    padding-top: 250px;
    max-width: 94%;
  }

  .hero h1 {
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 14px;
    margin-bottom: 24px;
    font-size: 1.08rem;
  }

  .hero-cta {
    letter-spacing: 0.45em;
    padding: 15px 22px 14px;
    font-size: 0.84rem;
  }

  .site-section {
    padding: 62px 0;
  }

  .contact-form {
    padding: 16px;
  }

  .services-showcase {
    gap: 18px;
  }

  .what-we-do-title {
    max-width: 100%;
    margin-bottom: 26px;
    padding: 16px 12px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .what-card-media img {
    height: 212px;
  }

  .what-card-body {
    padding: 18px 18px 20px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .service-media {
    height: 270px;
  }

  .service-body {
    padding: 18px 18px 20px;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-brand p,
  .footer-contact p,
  .footer-contact a,
  .footer-newsletter p {
    font-size: 0.96rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal],
  .hero-content {
    opacity: 1;
    transform: none;
  }
}
