:root {
  --bg: #060606;
  --bg-soft: #0d0d0f;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(199, 149, 74, 0.22);
  --line-strong: rgba(212, 166, 86, 0.58);
  --gold: #d0a15a;
  --gold-soft: #f0d6a1;
  --text: #f5f2ea;
  --muted: #beb7ab;
  --muted-strong: #d7cfbf;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --h1-size: 78px;
  --h2-size: 36px;
  --h3-size: 32px;
  --body-size: 18px;
  --label-size: 0.84rem;
  --support-size: 18px;
  --card-title-size: 1.42rem;
  --card-copy-size: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(208, 161, 90, 0.11), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(135deg, #020202 0%, #0a0a0b 42%, #050505 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: var(--body-size);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.012)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'%3E%3Cpath d='M0 110h220M110 0v220'/%3E%3C/g%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f9b52, #25d366);
  color: #08140c;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.36);
}

.site-header,
.trust-strip,
.enquiry-card,
.cta-band,
.site-footer,
.service-card,
.project-list article,
.about-panel,
.why-grid article,
.process-steps article,
.hero-metrics article {
  backdrop-filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.78);
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 162px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav a,
.footer-links a,
.text-link {
  transition: color 180ms ease;
}

.top-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--gold-soft);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta,
.button-gold {
  color: #111;
  background: linear-gradient(135deg, #f0d498 0%, #d4a45c 48%, #b37b35 100%);
  box-shadow: 0 14px 30px rgba(177, 123, 53, 0.24);
}

.button-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.nav-cta:hover,
.button:hover,
.service-card:hover,
.why-grid article:hover,
.project-list article:hover,
.process-steps article:hover,
.about-panel:hover,
.hero-metrics article:hover {
  transform: translateY(-3px);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  color: var(--gold-soft);
}

.section {
  padding: 52px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 28px;
  align-items: start;
  min-height: calc(100vh - 190px);
  padding-top: 30px;
}

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

.hero-side {
  display: grid;
  justify-items: end;
  align-self: start;
}

.section-header{
  display:grid;
  grid-template-columns: 1.65fr 0.35fr;
  gap:20px;
  align-items:start;
  margin-bottom:18px;
}

.section-header-main,
.section-header-side {
  min-width: 0;
  align-self: start;
}

.section-header-main {
  display: grid;
  align-content: start;
  gap: 14px;
}

.section-header-main .eyebrow,
.cta-copy .eyebrow {
  margin: 0;
}

.section-header-main h2.section-header-main h2,
.cta-copy h2 {
  max-width: none;
}

.section-header-side {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding-top: 2px;
}

.section-header-side p,
.cta-side p{
  max-width:18ch;
  font-size:15px;
  line-height:1.6;
  margin:0;
  opacity:.88;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
  min-height: 54vh;
  padding-top: 44px;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-visual {
  display: grid;
}

.page-frame {
  min-height: 500px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: var(--label-size);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Didot, "Bodoni MT", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(3.7rem, 6vw, var(--h1-size));
}

h2 {
  font-size: clamp(2.7rem, 3.8vw, var(--h2-size));
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.28rem, 2vw, var(--h3-size));
  line-height: 1.18;
}

.hero-text,
.hero-trust,
.about-text p,
.project-copy p,
.cta-copy p:last-child,
.contact-note,
address,
.contact-details a,
.service-card p,
.why-grid p,
.project-list p,
.process-steps p {
  color: var(--muted);
  line-height: 1.72;
  font-size: var(--body-size);
}

.service-card p,
.why-grid p,
.project-list p,
.process-steps p,
.portfolio-card-copy p,
.catalog-card-copy p {
  font-size: var(--card-copy-size);
  line-height: 1.66;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 12px;
}

.hero-trust {
  max-width: 54ch;
  margin: 0 0 18px;
  color: var(--muted-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

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

.hero-metrics article,
.about-panel,
.service-card,
.why-grid article,
.project-list article,
.process-steps article,
.trust-strip,
.enquiry-card,
.cta-band,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.hero-metrics article {
  padding: 16px;
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-metrics article:hover,
.service-card:hover,
.why-grid article:hover,
.project-list article:hover,
.process-steps article:hover,
.about-panel:hover {
  border-color: rgba(212, 166, 86, 0.35);
}

.hero-metrics strong,
.process-steps span,
.project-list span,
.service-index {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-metrics strong {
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 680px);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  border: 1px solid rgba(212, 166, 86, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(6, 6, 6, 0.5)),
    linear-gradient(133deg, transparent 42%, rgba(212, 166, 86, 0.52) 42.15%, transparent 42.3%);
}

.hero-frame img,
.project-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
}

.hero-plaque {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.84);
}

.hero-plaque span,
.project-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-plaque p,
.project-copy p {
  margin: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-radius: var(--radius);
}

.trust-strip p {
  margin: 0;
  font-family: Didot, "Bodoni MT", "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.34;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.trust-items span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-layout,
.projects-layout,
.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.about-text {
  padding-right: 18px;
}

.about-panel {
  padding: 26px;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease;
}

.about-panel-row + .about-panel-row {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.about-panel-row strong {
  margin-top: 8px;
  color: var(--text);
  font-size: 1.08rem;
  font-family: Didot, "Bodoni MT", "Times New Roman", serif;
}

.services-grid,
.why-grid,
.process-steps,
.portfolio-grid,
.project-catalog {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

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

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

.service-card {
  position: relative;
  min-height: 0;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 20px 20px;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -48px auto;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 166, 86, 0.18), transparent 70%);
}

.service-card h3,
.why-grid h3,
.process-steps h3,
.project-list h3,
.contact-details h3,
.footer-links h3 {
  margin-bottom: 14px;
}

.accent-card {
  border-color: var(--line-strong);
}

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

.why-grid article,
.process-steps article,
.project-list article {
  display: grid;
  align-content: start;
  gap: 14px;
  height: 100%;
  padding: 20px;
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-feature {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(212, 166, 86, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}

.project-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.project-list {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.portfolio-card,
.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.portfolio-card:hover,
.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 166, 86, 0.45);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.5);
}

.portfolio-card-media,
.catalog-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
}

.catalog-card-media {
  aspect-ratio: 1 / 0.94;
}

.portfolio-card-media::after,
.catalog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, transparent 56%, rgba(212, 166, 86, 0.18) 56.2%, transparent 56.5%);
}

.portfolio-card img,
.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
  filter: saturate(0.92) brightness(0.82);
}

.portfolio-card:nth-child(4n + 2) img,
.catalog-card:nth-child(4n + 2) img {
  object-position: center top;
}

.portfolio-card:nth-child(4n + 3) img,
.catalog-card:nth-child(4n + 3) img {
  object-position: center 38%;
}

.portfolio-card:nth-child(4n + 4) img,
.catalog-card:nth-child(4n + 4) img {
  object-position: center 62%;
}

.portfolio-card:hover img,
.catalog-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.9);
}

.portfolio-card-copy,
.catalog-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  flex: 1;
  padding: 18px 18px 20px;
}

.portfolio-card-copy span,
.catalog-card-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card-copy h3,
.catalog-card-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 1.55vw, var(--card-title-size));
  line-height: 1.22;
}

.portfolio-card-copy p,
.catalog-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--card-copy-size);
  line-height: 1.66;
}

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

.portfolio-footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

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

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

.featured-projects-home {
  padding-top: 22px;
}

.cta-band {
  display: block;
  padding: 24px;
  border-color: var(--line-strong);
  border-radius: var(--radius);
}

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

.cta-side {
  align-items: start;
}

.cta-side .cta-actions {
  margin-top: 2px;
}

.site-footer {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 24px 24px 18px;
  border-radius: var(--radius);
}

.footer-authority {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.footer-authority article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-authority strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-authority span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

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

.contact-panel {
  min-height: 100%;
}

.footer-embedded {
  margin-top: 0;
}

.footer-brand img {
  width: 186px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 34rem;
}

.contact-details a,
.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.contact-note {
  margin: 0 0 14px;
}

address {
  margin: 0 0 16px;
  font-style: normal;
}

.footer-map iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 24px;
  filter: grayscale(1) contrast(1.05) brightness(0.8);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 242, 234, 0.58);
}

@media (max-width: 1220px) {
  .hero,
  .page-hero,
  .trust-strip,
  .about-layout,
  .projects-layout,
  .cta-band,
  .footer-contact,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .hero {
    min-height: auto;
  }

  .section-header-main h2,
  .cta-copy h2 {
    max-width: 15ch;
  }

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

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

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

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

  .trust-items {
    justify-content: flex-start;
  }

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

@media (max-width: 920px) {
  .page-shell {
    width: calc(100% - 28px);
    padding-top: 14px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .top-nav {
    gap: 14px 18px;
  }

  .services-grid,
  .hero-metrics,
  .why-grid,
  .process-steps,
  .footer-links,
  .portfolio-grid,
  .portfolio-grid-compact,
  .project-catalog,
  .footer-authority {
    grid-template-columns: 1fr;
  }

  .hero-frame,
  .page-frame,
  .project-feature {
    min-height: 470px;
  }

  .hero-plaque {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 38px 0;
  }

  .site-header,
  .trust-strip,
  .enquiry-card,
  .cta-band,
  .site-footer,
  .service-card,
  .why-grid article,
  .process-steps article,
  .project-list article,
  .about-panel,
  .hero-metrics article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-mark img {
    width: 146px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  h2 {
    max-width: 100%;
  }

  .section-header-main {
    gap: 10px;
  }

  .hero-text,
  .hero-trust,
  .about-text p,
  .project-copy p,
  .cta-copy p:last-child {
    font-size: 1rem;
  }

  .hero-actions,
  .portfolio-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .section-header-side p,
  .cta-side p {
    max-width: none;
  }

  .portfolio-card-copy,
  .catalog-card-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-frame,
  .page-frame,
  .project-feature {
    min-height: 360px;
  }

  .project-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
.footer-title{
font-size:48px;
line-height:1.1;
font-weight:600;
margin-bottom:18px;
color:#f5f1e8;
letter-spacing:-0.5px;
}

.footer-subtext{
font-size:18px;
line-height:1.8;
color:rgba(255,255,255,.72);
margin-bottom:28px;
max-width:560px;
}

.footer-label{
font-size:11px;
letter-spacing:3px;
text-transform:uppercase;
color:#c89b45;
margin:22px 0 10px;
font-weight:700;
}

.footer-address{
font-size:17px;
line-height:1.9;
color:rgba(255,255,255,.88);
}

.footer-address a{
color:rgba(255,255,255,.88);
text-decoration:none;
display:inline-block;
margin-bottom:8px;
}

.contact-details{
padding-top:10px;
}