:root {
  --brick: #a84626;
  --brick-dark: #6f2f1c;
  --oxide: #8f3b24;
  --clay: #cf7444;
  --gold: #c99449;
  --forest: #123832;
  --sage: #e5ece2;
  --charcoal: #16211f;
  --ink: #202b28;
  --muted: #66746f;
  --paper: #fff8ed;
  --sand: #eadcc9;
  --cream: #faf4ea;
  --white: #ffffff;
  --line: rgba(32, 43, 40, 0.12);
  --shadow: 0 24px 60px rgba(22, 33, 31, 0.16);
  --shadow-strong: 0 34px 90px rgba(22, 33, 31, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(207, 116, 68, 0.12), transparent 34rem),
    linear-gradient(180deg, #fffaf3 0%, var(--cream) 42%, #fff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 9999;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    color: #fff;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 14px 40px rgba(22, 33, 31, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__logo {
  width: 188px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(168, 70, 38, 0.16);
  box-shadow: 0 12px 28px rgba(22, 33, 31, 0.1);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.brand:hover .brand__logo {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 37, 34, 0.16);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 8px;
}

.brand--footer .brand__logo {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

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

.site-nav a,
.nav-dropdown__trigger {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active {
  color: var(--forest);
  background: rgba(18, 56, 50, 0.09);
}

.site-nav a:hover,
.nav-dropdown__trigger:hover {
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown__trigger::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(22, 33, 31, 0.88), transparent);
  pointer-events: none;
}

.hero__media,
.page-hero::before,
.project-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.92) 0%, rgba(18, 56, 50, 0.66) 42%, rgba(143, 59, 36, 0.18) 100%),
    url("../images/10.jpeg");
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  max-width: 860px;
  margin-left: max(20px, calc((100vw - 1160px) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--forest);
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero p,
.page-hero p {
  max-width: 680px;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__badges span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-gallery {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 58px;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 190px;
  grid-template-rows: 140px 160px;
  gap: 14px;
  pointer-events: none;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  animation: floatSoft 5.5s ease-in-out infinite;
}

.hero-gallery img:nth-child(2) {
  grid-row: span 2;
  animation-delay: 0.7s;
}

.hero-gallery img:nth-child(3) {
  animation-delay: 1.2s;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brick), var(--oxide));
  box-shadow: 0 14px 30px rgba(168, 70, 38, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--oxide), var(--brick-dark));
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(129, 53, 29, 0.28);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head p,
.split p,
.card p,
.testimonial p,
.team-card p,
.service-list p,
.contact-card p,
.project-card p {
  color: var(--muted);
}

.trust-strip {
  padding: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.trust-grid div {
  position: relative;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.trust-grid div::before {
  position: absolute;
  left: 24px;
  top: 0;
  width: 46px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--brick), var(--gold));
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--brick-dark);
  font-size: 1rem;
}

.trust-grid span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.92rem;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.card,
.testimonial,
.team-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(22, 33, 31, 0.08);
  backdrop-filter: blur(14px);
}

.card {
  padding: 30px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.testimonial:hover,
.team-card:hover,
.project-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(168, 70, 38, 0.32);
}

.card__image {
  width: calc(100% + 60px);
  height: 210px;
  margin: -30px -30px 24px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.card:hover .card__image {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(229, 236, 226, 0.94), rgba(255, 248, 237, 0.86)),
    linear-gradient(90deg, transparent 0 47%, rgba(168, 70, 38, 0.12) 47% 48%, transparent 48%);
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.product-showcase__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transform: rotate(-1deg);
}

.product-showcase__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.product-showcase__image:hover img,
.mini-gallery img:hover,
.team-card__image:hover {
  transform: scale(1.05);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
  box-shadow: 0 12px 28px rgba(22, 33, 31, 0.08);
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--brick));
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18, 56, 50, 0.18);
}

.about-band,
.team-band,
.values-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(234, 220, 201, 0.9), rgba(229, 236, 226, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(32, 43, 40, 0.035) 96px 97px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.about-panel {
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(150deg, rgba(18, 56, 50, 0.94), rgba(143, 59, 36, 0.82)),
    url("../images/1.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-strong);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-panel:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 40px 100px rgba(22, 33, 31, 0.28);
}

.about-panel__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 148, 73, 0.14);
}

.testimonial,
.team-card {
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial p {
  font-size: 1.03rem;
  position: relative;
}

.testimonial p::before {
  content: '"';
  display: block;
  color: rgba(168, 70, 38, 0.22);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.7;
}

.testimonial strong {
  color: var(--brick-dark);
}

.team-card {
  overflow: hidden;
}

.team-card__image {
  width: calc(100% + 56px);
  height: 220px;
  margin: -28px -28px 22px;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: 110px 0 70px;
  color: #fff;
  background: var(--charcoal);
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(0deg, rgba(22, 33, 31, 0.84), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero--about::before {
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.9), rgba(143, 59, 36, 0.34)),
    url("../images/1.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero--services::before {
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.9), rgba(143, 59, 36, 0.34)),
    url("../images/10.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero--projects::before {
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.9), rgba(143, 59, 36, 0.34)),
    url("../images/8.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero--contact::before {
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.9), rgba(143, 59, 36, 0.34)),
    url("../images/11.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero--pune::before {
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.9), rgba(143, 59, 36, 0.34)),
    url("../images/pune/IMG-20260701-WA0101.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero--gurugram::before {
  background:
    linear-gradient(100deg, rgba(18, 56, 50, 0.9), rgba(143, 59, 36, 0.34)),
    url("../images/gurugram/IMG-20260710-WA0181.jpg");
  background-size: cover;
  background-position: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stats-grid div {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(22, 33, 31, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stats-grid div:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--brick);
  font-size: 1.7rem;
  line-height: 1.1;
}

.stats-grid span {
  color: var(--muted);
  margin-top: 8px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  display: grid;
  grid-template-columns: 90px 0.7fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.28s ease, border-color 0.28s ease;
}

.service-list article:hover {
  padding-left: 14px;
  border-color: rgba(168, 70, 38, 0.35);
}

.service-list span {
  color: var(--brick);
  font-weight: 800;
  font-size: 1.35rem;
}

.service-list h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

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

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: end;
  padding: 28px;
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 18px 48px rgba(22, 33, 31, 0.16);
}

.project-card::before {
  transition: transform 0.65s ease, filter 0.65s ease;
}

.project-card:hover::before {
  transform: scale(1.09);
  filter: saturate(1.1);
}

.project-card div {
  position: relative;
  z-index: 1;
}

.project-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.project-card h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.project-card p {
  color: rgba(255, 255, 255, 0.82);
}

.project-card--two::before {
  background:
    linear-gradient(0deg, rgba(18, 56, 50, 0.88), rgba(143, 59, 36, 0.18)),
    url("../images/3.jpeg");
  background-size: cover;
  background-position: center;
}

.project-card--three::before {
  background:
    linear-gradient(0deg, rgba(18, 56, 50, 0.88), rgba(143, 59, 36, 0.18)),
    url("../images/4.jpeg");
  background-size: cover;
  background-position: center;
}

.project-card--four::before {
  background:
    linear-gradient(0deg, rgba(18, 56, 50, 0.88), rgba(143, 59, 36, 0.18)),
    url("../images/11.jpeg");
  background-size: cover;
  background-position: center;
}

.presence-overview {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: 0 0 82px;
}

.presence-page .reveal {
  opacity: 1;
  transform: none;
}

.presence-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.presence-copy,
.presence-summary {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.presence-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.presence-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.presence-copy p {
  color: var(--muted);
}

.presence-counts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.presence-counts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.presence-counts strong,
.presence-counts span {
  display: block;
}

.presence-counts strong {
  color: var(--brick);
  font-size: 1.9rem;
  line-height: 1;
}

.presence-counts span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.presence-feature {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 190px 190px;
  gap: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.presence-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presence-feature img:first-child {
  grid-row: span 2;
}

.presence-feature img:nth-child(2),
.presence-feature img:nth-child(3) {
  min-height: 0;
}

.presence-summary {
  grid-column: 1 / -1;
}

.presence-summary dl {
  margin: 0;
}

.presence-summary div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.presence-summary div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.presence-summary dt {
  color: var(--brick);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.presence-summary dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.presence-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  opacity: 1;
  visibility: visible;
}

.presence-image,
.presence-video {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(22, 33, 31, 0.08);
  transition: transform 0.42s ease;
}

.presence-image:hover,
.presence-video:hover {
  transform: scale(1.04);
}

.presence-video {
  background: var(--charcoal);
}

.presence-video-section {
  padding-top: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 30px;
}

.contact-block {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brick);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(168, 70, 38, 0.12), 0 12px 28px rgba(22, 33, 31, 0.08);
}

.site-footer {
  padding: 72px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(18, 56, 50, 0.98), rgba(22, 33, 31, 1)),
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(255, 255, 255, 0.06) 96px 97px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.2fr;
  gap: 34px;
}

.brand--footer {
  color: #fff;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: #fff;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.34);
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 60px rgba(18, 140, 126, 0.42);
}

.whatsapp-float__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #128c7e;
  background: #fff;
  font-weight: 900;
}

.whatsapp-float__text {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-dropdown__menu {
    position: static;
    display: grid;
    gap: 4px;
    min-width: 0;
    margin: 4px 0 4px 14px;
    padding: 4px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-gallery {
    opacity: 0.22;
    right: 20px;
    bottom: 30px;
    transform: scale(0.84);
    transform-origin: right bottom;
  }

  .trust-grid,
  .cards--three,
  .split,
  .product-showcase__grid,
  .project-grid,
  .contact-grid,
  .presence-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .presence-overview {
    margin-top: -34px;
    padding-bottom: 62px;
  }

  .presence-feature {
    grid-template-rows: 210px 210px;
  }

  .product-showcase__image img {
    height: 460px;
  }

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

  .trust-grid div {
    border-bottom: 1px solid var(--line);
  }

  .service-list article {
    grid-template-columns: 64px 1fr;
  }

  .service-list article p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 70px;
  }

  .brand__logo {
    width: 148px;
    height: 44px;
  }

  .site-nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero__content {
    padding: 76px 0;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .hero-gallery {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    min-height: 360px;
    padding: 86px 0 54px;
  }

  .card,
  .testimonial,
  .team-card,
  .contact-card,
  .contact-form,
  .about-panel {
    padding: 24px;
  }

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

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-list article p {
    grid-column: auto;
  }

  .project-card {
    min-height: 300px;
  }

  .presence-overview {
    margin-top: 0;
    padding: 54px 0;
  }

  .presence-copy,
  .presence-summary {
    padding: 24px;
  }

  .presence-counts {
    grid-template-columns: 1fr;
  }

  .presence-feature {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .presence-feature img:first-child {
    grid-row: auto;
  }

  .presence-gallery {
    grid-template-columns: 1fr;
  }

  .presence-image,
  .presence-video {
    height: 240px;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .mini-gallery img {
    height: 190px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding-right: 12px;
  }

  .whatsapp-float__text {
    display: none;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 45px rgba(18, 140, 126, 0.34);
  }
  50% {
    box-shadow: 0 18px 45px rgba(18, 140, 126, 0.34), 0 0 0 10px rgba(37, 211, 102, 0.13);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
