:root {
  --ink: #101827;
  --navy: #10264d;
  --gold: #c7a34b;
  --paper: #f5f7fa;
  --white: #ffffff;
  --line: #dce3eb;
  --muted: #667085;
  --cash: #00d64f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--navy);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.menu {
  display: none;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 85px 7%;
  background: linear-gradient(135deg, #ffffff, #e9eef6);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin: 0.2em 0;
  max-width: 900px;
}

.hero-card,
.card,
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(16, 38, 77, 0.08);
}

.hero-card,
.card,
.panel {
  padding: 25px;
}

.section {
  padding: 74px 7%;
}

.alt {
  background: #edf2f7;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0.2em 0 1em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.78rem;
  color: #7d642d;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 13px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #ccd5df;
  border-radius: 9px;
  font: inherit;
}

textarea {
  min-height: 110px;
}

.button {
  display: inline-block;
  border: 0;
  border-radius: 9px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  margin: 4px;
}

.primary {
  background: var(--navy);
  color: #ffffff;
}

.secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.cash {
  background: var(--cash);
  color: #07170c;
}

.full {
  width: 100%;
  text-align: center;
}

.stack {
  display: grid;
  gap: 8px;
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
}

.status {
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 7%;
  background: var(--ink);
  color: #ffffff;
}

@media (max-width: 850px) {
  .hero,
  .grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }

  .topbar nav.open {
    display: flex;
  }

  .menu {
    display: block;
  }

  .brand small {
    display: none;
  }
  
}
.rental-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px auto;
}

.rental-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 700px) {
  .rental-gallery {
    grid-template-columns: 1fr;
  }

  .rental-gallery img {
    height: auto;
  }
}
