:root {
  --charcoal: #171512;
  --charcoal-2: #231f19;
  --ink: #25221d;
  --muted: #6f685f;
  --ivory: #f6f1e8;
  --paper: #fffaf2;
  --white: #ffffff;
  --bronze: #b78b47;
  --bronze-2: #8c632f;
  --sage: #526257;
  --slate: #2f3d3d;
  --line: rgba(37, 34, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 54px rgba(31, 25, 16, 0.16);
  --shadow-soft: 0 14px 34px rgba(31, 25, 16, 0.11);
  --container: 1180px;
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(183, 139, 71, 0.34);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(246, 241, 232, 0.92);
  border-bottom: 1px solid rgba(37, 34, 29, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 241, 232, 0.98);
  box-shadow: 0 10px 32px rgba(31, 25, 16, 0.12);
}

.nav-shell {
  width: min(100% - 2rem, var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  flex: 0 0 auto;
}

.brand img {
  width: 180px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(37, 34, 29, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--charcoal);
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  grid-column: 1;
  grid-row: 1;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.86rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: break-word;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 25, 16, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--bronze);
  color: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  background: #c89a52;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-small {
  min-height: 42px;
  padding: 0.72rem 0.95rem;
  font-size: 0.92rem;
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: var(--ivory);
  color: var(--charcoal);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--bronze-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: #e2c489;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: clamp(2.55rem, 8vw, 5.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
}

h3 {
  color: var(--charcoal);
  font-size: 1.06rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.section {
  padding: clamp(4.2rem, 8vw, 7.2rem) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head p:last-child,
.section-copy > p {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.94) 0%, rgba(18, 16, 13, 0.78) 42%, rgba(18, 16, 13, 0.38) 100%),
    linear-gradient(0deg, rgba(18, 16, 13, 0.45), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 8rem) 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 0.8rem;
  color: rgba(255, 250, 242, 0.87);
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
}

.hero-local-line {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: #e2c489;
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  font-weight: 800;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 250, 242, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-media {
  position: relative;
  min-width: 0;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center bottom;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-note {
  position: absolute;
  right: clamp(0.8rem, 3vw, 1.4rem);
  bottom: clamp(0.8rem, 3vw, 1.4rem);
  width: min(300px, calc(100% - 1.6rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(23, 21, 18, 0.78);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.about-note strong,
.about-note span {
  display: block;
}

.about-note strong {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.about-note span {
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.9rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.highlight-grid article,
.service-card,
.project-card,
.process-step,
.testimonial-card,
.form-card,
.contact-card,
.stats-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.74);
  box-shadow: var(--shadow-soft);
}

.highlight-grid article {
  padding: 1rem;
}

.highlight-grid svg,
.icon-box svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-grid svg {
  margin-bottom: 0.7rem;
  color: var(--bronze-2);
}

.highlight-grid h3 {
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
}

.highlight-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.services-section,
.testimonials-section {
  background:
    linear-gradient(rgba(37, 34, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 34, 29, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 325px;
  padding: 1.25rem;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before,
.project-card::before,
.stats-grid article::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  left: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), rgba(183, 139, 71, 0));
  opacity: 0.75;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 139, 71, 0.42);
  box-shadow: var(--shadow);
}

.icon-box {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 6px;
  background: rgba(183, 139, 71, 0.12);
  color: var(--bronze-2);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(37, 34, 29, 0.1);
}

.service-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.project-body p,
.process-step p,
.testimonial-card blockquote {
  margin-bottom: 0;
}

.projects-section {
  background:
    linear-gradient(rgba(37, 34, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 34, 29, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, var(--ivory) 0%, #eee6d9 100%);
  background-size: 46px 46px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.project-card-feature {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.project-card-feature img {
  aspect-ratio: 16 / 7.9;
}

.project-body {
  padding: 1.1rem;
}

.project-body span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--bronze-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: 0.45rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--charcoal);
  background-size: 44px 44px;
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .section-head p:last-child,
.process-step p {
  color: rgba(255, 250, 242, 0.7);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: 3rem;
  left: 3rem;
  height: 1px;
  background: rgba(183, 139, 71, 0.38);
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 1.1rem;
  background: rgba(255, 250, 242, 0.06);
  border-color: var(--line-dark);
  box-shadow: none;
}

.process-step::after {
  content: "CHECKPOINT";
  position: absolute;
  right: 0.9rem;
  bottom: 0.85rem;
  color: rgba(226, 196, 137, 0.56);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1.3rem;
  place-items: center;
  border: 1px solid rgba(183, 139, 71, 0.62);
  border-radius: 50%;
  background: var(--charcoal);
  color: #e2c489;
  font-weight: 900;
}

.why-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 10px 26px rgba(31, 25, 16, 0.08);
}

.trust-list li::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 0.65rem;
  background: var(--bronze);
}

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

.trust-list strong {
  margin-bottom: 0.3rem;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.25;
}

.trust-list span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.hinglish-line {
  margin: 1rem 0 0;
  color: var(--slate);
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article {
  position: relative;
  min-height: 148px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.stats-grid strong {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.08;
}

.why-visual {
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.why-visual img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.why-visual figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.cta-band {
  padding: clamp(3rem, 6vw, 4.6rem) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.96), rgba(38, 34, 27, 0.92)),
    url("../images/delhi-ncr-building-construction.jpg") center/cover;
}

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

.cta-inner h2 {
  max-width: 720px;
  margin-bottom: 0.55rem;
  color: var(--white);
}

.cta-inner p {
  color: rgba(255, 250, 242, 0.78);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 1.35rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card blockquote {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.48;
}

.testimonial-card figcaption {
  margin-top: 1.2rem;
  color: var(--bronze-2);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  background: linear-gradient(180deg, var(--ivory) 0%, #ece3d5 100%);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.contact-card {
  min-height: 108px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 139, 71, 0.45);
  box-shadow: var(--shadow);
}

.contact-card .icon-box {
  margin: 0;
  flex: 0 0 auto;
}

.contact-card strong {
  display: block;
  color: var(--charcoal);
}

.contact-card span:last-child {
  min-width: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.form-card {
  padding: clamp(1.15rem, 3vw, 1.8rem);
  background: var(--paper);
}

.form-card h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.form-helper {
  margin-bottom: 1.35rem;
  color: var(--slate);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row {
  min-width: 0;
}

.form-row-full {
  grid-column: 1 / -1;
}

.honeypot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(37, 34, 29, 0.17);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input,
.form-row select {
  min-height: 48px;
  padding: 0 0.9rem;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
  padding: 0.85rem 0.9rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 4px rgba(183, 139, 71, 0.15);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(111, 104, 95, 0.72);
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: #b34b34;
}

.field-error {
  display: block;
  min-height: 1.15rem;
  margin-top: 0.28rem;
  color: #9d3825;
  font-size: 0.8rem;
  font-weight: 800;
}

.form-submit {
  grid-column: 1 / -1;
  width: fit-content;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--sage);
  font-weight: 900;
}

.form-message.is-error {
  color: #9d3825;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: #1f7a4c;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(24, 48, 35, 0.28);
  font-weight: 900;
}

.floating-whatsapp svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp span {
  line-height: 1;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 1.6rem;
  background: var(--charcoal);
  color: rgba(255, 250, 242, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand img {
  width: 180px;
  height: auto;
  padding: 0.22rem;
  border-radius: 6px;
  background: var(--ivory);
}

.footer-brand p {
  max-width: 430px;
  margin: 1rem 0;
  color: rgba(255, 250, 242, 0.7);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 250, 242, 0.78);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #e2c489;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.9rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-credit {
  margin-top: 0.9rem;
  color: rgba(255, 250, 242, 0.48);
  font-size: 0.78rem;
  text-align: center;
}

.footer-credit a {
  color: inherit;
}

.footer-credit a:hover {
  color: #e2c489;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-steps::before {
    display: none;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .brand img {
    width: 166px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--header-height) + 0.55rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 0.25rem;
  }

  .nav-links a {
    min-height: 42px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-panel .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: clamp(5.4rem, 20vw, 7rem) 0 clamp(4.2rem, 14vw, 5.5rem);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 16, 13, 0.84) 0%, rgba(18, 16, 13, 0.82) 52%, rgba(18, 16, 13, 0.92) 100%),
      linear-gradient(90deg, rgba(18, 16, 13, 0.7), rgba(18, 16, 13, 0.25));
  }

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

  .about-media {
    order: 2;
  }

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

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

  .project-card-feature {
    grid-column: span 2;
  }

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

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

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container,
  .nav-shell {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero-copy {
    margin-bottom: 1.3rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .trust-badges {
    gap: 0.55rem;
  }

  .trust-badges span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-media img {
    aspect-ratio: 1 / 1.12;
  }

  .about-note {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
    background: var(--charcoal);
  }

  .service-grid,
  .project-grid,
  .process-steps,
  .stats-grid,
  .testimonial-grid,
  .contact-cards,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-thumb {
    aspect-ratio: 16 / 7.4;
  }

  .process-step::after {
    position: static;
    display: inline-flex;
    margin-top: 1rem;
  }

  .project-card-feature {
    grid-column: auto;
  }

  .project-card-feature img,
  .project-card img {
    aspect-ratio: 16 / 10.5;
  }

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

  .form-submit {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    display: inline-flex;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .btn {
    padding-inline: 0.9rem;
  }

  .brand img {
    width: 154px;
  }

  .contact-card {
    align-items: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
