/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #ffffff;
  color: #1f3a2e;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ================= SIDEBAR (LEGACY – NOT USED BUT SAFE) ================= */
.product-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: #ffffff;
  padding: 48px 28px;
}

.product-sidebar li {
  margin-bottom: 22px;
}

.product-sidebar a {
  font-size: 18px;
  font-weight: 500;
}

/* ================= MAIN CONTENT ================= */
.main-content {
  margin-left: 220px;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #e6e6e6;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 48px;
  font-size: 18px;
  font-weight: 500;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #1f3a2e;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 24px 64px;
  border-top: 1px solid #e6e6e6;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 18px;
}

/* ================= NAV SHADOW ================= */
.navbar.scrolled {
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ================= NAV MOBILE ================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }

  .nav-container {
    padding: 20px 24px;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  background: url("aesthetic-steel-staircase.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.90) 55%,
    rgba(31,58,46,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 96px;
  transform: translateY(-50%);
  max-width: 520px;
}

.hero-logo {
  height: 60px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 1.6;
}

/* ================= HERO LOCATION ================= */
.hero-location {
  position: absolute;
  z-index: 2;
  right: 64px;
  bottom: 80px;
  max-width: 360px;
}

.hero-location h3 {
  color: #1f2f2b;
}

.hero-location p {
  color: #34524b;
}

/* ===== ABOUT SECTION – MOBILE FIX ===== */
@media (max-width: 900px) {

  /* Make About section single column */
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  /* Remove green block ONLY on mobile */
  .about-accent {
    display: none;
  }

  /* Let text breathe */
  .about-text {
    padding: 72px 24px;
  }
}

/* ================= SECTIONS ================= */
section {
  padding: 96px 64px;
}

section h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

section p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
}

/* ================= STAIRCASE GRID ================= */
.staircase-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.staircase-card {
  background: #ffffff;
  border: 1px solid #e0ded8;
  border-radius: 8px;
  padding: 18px;
}

.staircase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

/* ================= IMAGE GRID ================= */
.image-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.image-card {
  background: #ffffff;
  border: 1px solid #e0ded8;
  border-radius: 8px;
  padding: 14px;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

/* ================= ABOUT ================= */
.about-section {
  padding: 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
}

.about-text {
  padding: 96px 96px 96px 64px;
  background: #ffffff;
}

.about-accent {
  background: #1f3a2e;
}

/* ================= CONTACT ================= */
.contact-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* ================= REQUEST TO CONNECT (COMPACT – ADDED) ================= */
#request-connect {
  background: #ffffff;
}

.connect-form.compact {
  max-width: 720px;
  display: grid;
  gap: 18px;
}

.connect-form.compact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.connect-form.compact input,
.connect-form.compact select {
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
}

.connect-form.compact button {
  margin-top: 12px;
  padding: 14px;
  background: #1f3a2e;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.connect-form.compact button:hover {
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .main-content {
    margin-left: 0;
  }

  section {
    padding: 72px 24px;
  }

  section h2 {
    font-size: 28px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
  }

  .hero-location {
    display: none;
  }

  .staircase-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .connect-form.compact .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* ===== MOBILE FIX ONLY ======= */
/* ============================= */

@media (max-width: 768px) {

  /* GENERAL */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 64px 24px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAVBAR */
  .navbar {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(242,239,234,0.95) 0%,
      rgba(242,239,234,0.9) 55%,
      rgba(31,58,46,0.6) 100%
    );
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 96px 24px 48px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-location {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 24px;
    max-width: 100%;
  }

  /* ABOUT SECTION FIX (THIS WAS THE BIG ISSUE) */
  .about-wrapper {
    display: block;
  }

  .about-text {
    padding: 64px 24px;
  }

  .about-text p {
    max-width: 100%;
    text-align: justify;
  }

  .about-accent {
    display: none;
  }

  /* STAIRCASE GRID */
  .staircase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .staircase-card img {
    height: auto;
  }

  /* IMAGE GRIDS */
  .image-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* REQUEST TO CONNECT */
  #request-connect {
    padding: 80px 24px;
  }

  .connect-form {
    width: 100%;
  }

  .connect-form input,
  .connect-form select,
  .connect-form button {
    width: 100%;
    font-size: 16px;
  }

  /* CONTACT */
  .contact-list li {
    font-size: 15px;
  }

}



