:root {
  --magenta: #9e005d;
  --magenta-hover: #8e004d;
  --cream: #faf9f6;
  --ink: #111827;
  --muted: #4b5563;
  --faint: #9ca3af;
  --white: #ffffff;
  --line: #ece8e0;
  --max: 68rem;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

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

@media (min-width: 640px) {
  .wrap {
    width: min(100% - 3rem, var(--max));
  }
}

.topbar {
  background: var(--magenta);
  color: var(--white);
  padding: 0.5rem 0;
}

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

.topbar-note {
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 639px) {
  .topbar-note {
    display: none;
  }

  .topbar-inner {
    justify-content: flex-end;
  }
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link:hover {
  color: #f3e8ee;
}

.phone-link svg {
  width: 1rem;
  height: 1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(250 249 246 / 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 1.5rem;
}

.nav-logo img {
  height: 2.35rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
}

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

.menu-btn {
  display: inline-flex;
  padding: 0.35rem;
}

.menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding-bottom: 1rem;
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.7rem 0.15rem;
  font-weight: 500;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-btn,
  .mobile-menu,
  .mobile-menu.open {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  padding: 0.9rem 1.6rem;
}

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

.btn-ghost {
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  padding: 4.5rem 0 4.25rem;
  text-align: center;
}

.hero-logo {
  height: 5.5rem;
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero-kicker {
  color: var(--magenta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.15rem;
}

.hero p:not(.hero-kicker) {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.eyebrow {
  display: inline-block;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.about-copy h2,
.project-copy h2,
.contact h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.section-head a {
  color: var(--magenta);
  font-weight: 600;
}

.section-head a:hover {
  text-decoration: underline;
}

.capabilities,
.about,
.people {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.grid-4 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  padding: 1.5rem 1.25rem;
  border-top: 2px solid var(--magenta);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.project {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 860px) {
  .project {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.project-media {
  border-radius: 10px;
  overflow: hidden;
}

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

.project-copy p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 1.5rem;
}

.chip {
  background: #f3e6ee;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.history-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .history-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.listing {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.listing-photo {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.listing-visual {
  height: 11rem;
  background: linear-gradient(160deg, #9e005d 0%, #6b003f 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.listing-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.listing-status {
  display: block;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.listing-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.listing-place {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.listing-body p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-copy {
  max-width: 38rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-copy p {
  color: var(--muted);
  margin-top: 0.9rem;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.timeline li {
  padding-top: 0.85rem;
  border-top: 2px solid var(--magenta);
}

.timeline .time {
  display: block;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.timeline h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.timeline p {
  color: var(--muted);
  font-size: 0.92rem;
}

.people-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 46rem;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .people-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.person {
  text-align: center;
  padding: 0.5rem 1rem 0;
}

.person-photo,
.person-initials {
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.15rem;
}

.person-initials {
  display: grid;
  place-items: center;
  background: var(--magenta);
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.person-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.person-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  background: var(--magenta);
  color: var(--white);
}

.contact .eyebrow {
  color: #ffd6ec;
}

.contact-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact h2 {
  margin-bottom: 0.7rem;
}

.contact .lede {
  color: rgb(255 255 255 / 0.88);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
}

.contact-details a,
.contact-details p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-details a:hover {
  color: #ffd6ec;
}

.contact-details svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.form {
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  border: 1px solid #d9d4cc;
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  background: var(--cream);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--magenta);
  outline-offset: 1px;
}

.form textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

.form-success {
  display: none;
  background: #ecfdf3;
  color: #166534;
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

.form-success.show {
  display: block;
}

.footer {
  background: var(--ink);
  padding: 1.35rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer p {
  color: var(--faint);
  font-size: 0.88rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
