:root {
  --midnight: #1B2E4A;
  --cream: #F0EFE9;
  --ink: #201F1B;
  --linen: #EAE4D6;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1.15;
}

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

a {
  color: inherit;
}

.container {
  width: min(1080px, 92%);
  margin-inline: auto;
}


.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--midnight);
  color: var(--linen);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-name {
  text-transform: uppercase;
  font-size: 1.05rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.menu a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--linen);
  transition: color 0.2s;
}

.menu a:hover {
  color: #fff;
}

.book-now {
  border: 1px solid var(--linen);
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
}

.book-now:hover {
  background: var(--linen);
  color: var(--midnight) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--linen);
  transition: transform 0.25s, opacity 0.25s;
}


.band {
  background: var(--midnight);
  color: var(--linen);
}

.cream {
  background: var(--cream);
  color: var(--ink);
}

.mist {
  background: #E9E7DF;
  color: var(--ink);
}

.chapter {
  padding: 5rem 0;
}

.heading {
  margin-bottom: 3rem;
  max-width: 640px;
}

.heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-top: 0.4rem;
}

.subtitle {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.on-dark h2,
.intro h1 {
  color: #fff;
}


.intro {
  padding: 4.5rem 0 4rem;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.kicker {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.kicker-dark {
  color: var(--midnight);
}

.intro h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 0.8rem;
  max-width: 14ch;
}

.lede {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  max-width: 46ch;
}

.intro-art {
  position: relative;
}

.courtyard {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin-inline: auto;
}

.drawing-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  margin-top: 0.4rem;
  color: var(--linen);
}


.button {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.button-light {
  background: var(--linen);
  color: var(--midnight);
}

.button-light:hover {
  background: #fff;
}

.button-outline {
  border: 1px solid var(--linen);
  color: var(--linen);
}

.button-outline:hover {
  background: var(--linen);
  color: var(--midnight);
}

.intro .button {
  margin-top: 1.8rem;
}


.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service {
  border-top: 2px solid var(--midnight);
  padding-top: 1.2rem;
}

.number {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--midnight);
}

.number.on-dark {
  color: var(--linen);
}

.service h3 {
  font-size: 1.25rem;
  margin: 0.6rem 0;
}

.fee {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: #6b655a;
  margin-top: 0.8rem;
}

.about {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(27, 46, 74, 0.2);
}

.about img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}

.about h3 {
  font-size: 1.4rem;
  margin: 0.5rem 0 0.8rem;
}

.about-text p:last-child {
  max-width: 52ch;
}


.work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.piece {
  background: var(--cream);
  box-shadow: 0 1px 3px rgba(27, 46, 74, 0.12);
}

.piece-photo {
  aspect-ratio: 600 / 420;
  overflow: hidden;
}

.piece-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piece-caption {
  padding: 1.4rem;
}

.plate {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--midnight);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}


.process {
  padding: 5rem 0 4rem;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.steps li {
  border-top: 1px solid rgba(234, 228, 214, 0.4);
  padding-top: 1.2rem;
}

.steps h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #fff;
}

.steps p {
  font-size: 0.98rem;
}

.offer {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(234, 228, 214, 0.4);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
}


.contact {
  padding: 5rem 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.coverage {
  margin-top: 2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
}


.footer {
  background: #152338;
  color: var(--linen);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  flex-wrap: wrap;
}


@media (max-width: 820px) {
  .intro-layout {
    grid-template-columns: 1fr;
  }

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

  .intro-art {
    max-width: 380px;
  }

  .about {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--midnight);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }

  .menu.open {
    transform: translateY(0);
  }

  .menu a {
    padding: 1rem 1.2rem;
    border-top: 1px solid rgba(234, 228, 214, 0.15);
  }

  .book-now {
    border: 0;
    border-top: 1px solid rgba(234, 228, 214, 0.15);
    text-align: center;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
