@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --black: #10100f;
  --charcoal: #1b1b19;
  --graphite: #2a2a27;
  --cream: #f5efe4;
  --ivory: #fffaf1;
  --sand: #d9c6aa;
  --bronze: #a77743;
  --bronze-dark: #81592f;
  --text: #1d1d1a;
  --muted: #70695f;
  --line: rgba(0,0,0,.12);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: Inter, system-ui, sans-serif;
}

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

.topbar {
  height: 86px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: 0 0 48px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .22em;
}

.brand-sub {
  font-size: 11px;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: .28em;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.nav a {
  opacity: .9;
}

.nav a:hover {
  color: var(--sand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease;
}

.btn-primary {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}

.btn-primary:hover {
  background: var(--bronze-dark);
}

.btn-outline,
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.btn-outline:hover,
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.45) 42%, rgba(0,0,0,.05) 100%),
    url("assets/hero-structure.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  width: min(680px, 90%);
  margin-left: 6vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 18px;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: .96;
  margin: 0;
}

h1 {
  font-size: clamp(52px, 7vw, 96px);
  max-width: 680px;
}

.hero-text {
  font-size: 20px;
  line-height: 1.55;
  max-width: 540px;
  margin: 28px 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.brand-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 20px 30px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.brand-strip span {
  font-weight: 800;
}

.brand-strip a {
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(0,0,0,.4);
}

.section {
  padding: 78px 5vw;
}

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

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading h2,
.process-copy h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 58px);
}

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

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

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.card-image {
  height: 270px;
  background-size: cover;
  background-position: center;
}

.card-image.retail {
  background-image: url("assets/retail-space.jpg");
}

.card-image.office {
  background-image: url("assets/office-space.jpg");
}

.card-image.living {
  background-image: url("assets/living-space.jpg");
}

.card-body {
  text-align: center;
  padding: 38px 28px 34px;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: -68px auto 24px;
  background: var(--ivory);
  border: 1px solid var(--sand);
  color: var(--bronze);
  font-size: 24px;
}

.card h3,
.feature h4,
.step h4 {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 17px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--bronze-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}

.features {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 54px 5vw;
}

.feature {
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.feature:last-child {
  border-right: 0;
}

.feature span {
  color: var(--bronze);
  font-size: 30px;
}

.feature p {
  color: rgba(255,255,255,.66);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 60px;
  align-items: center;
  background: var(--cream);
}

.process-copy p:last-child {
  line-height: 1.8;
  color: var(--muted);
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 24px 18px;
  min-height: 190px;
}

.step strong {
  color: var(--bronze);
  letter-spacing: .16em;
}

.step p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 270px;
  gap: 8px;
  padding: 8px;
  background: var(--black);
}

.gallery-tile {
  background:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.05)),
    url("assets/gallery-1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: 28px;
  color: var(--white);
}

.gallery-tile:nth-child(2) {
  background-image:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.05)),
    url("assets/gallery-2.jpg");
}

.gallery-tile:nth-child(3) {
  background-image:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.05)),
    url("assets/gallery-3.jpg");
}

.gallery-tile:nth-child(4) {
  background-image:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.05)),
    url("assets/gallery-4.jpg");
}

.gallery-tile.large {
  grid-row: span 2;
}

.gallery-tile span {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 80px 6vw;
  background: linear-gradient(90deg, var(--ivory), var(--sand));
}

.cta h2 {
  max-width: 850px;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 58px 6vw;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer h5 {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: .18em;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255,255,255,.70);
  margin: 9px 0;
  line-height: 1.5;
}

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

@media (max-width: 1000px) {
  .topbar {
    padding: 0 22px;
  }

  .nav {
    display: none;
  }

  .three,
  .features,
  .split,
  .footer,
  .cta {
    grid-template-columns: 1fr;
  }

  .features {
    gap: 28px;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 24px;
  }

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

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

  .gallery-tile.large {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    height: auto;
    padding: 18px;
    gap: 18px;
    flex-wrap: wrap;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-left: 24px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section {
    padding: 58px 24px;
  }

  .brand-strip {
    justify-content: flex-start;
  }
}


/* Extra safety: if image files are missing, these sections still look intentional */
.hero {
  background-color: #151412;
}

.card-image,
.gallery-tile {
  background-color: #d9c6aa;
}
