:root {
  --paper: #f4efe3;
  --paper-soft: #fbf8f1;
  --ink: #18231f;
  --muted: #69716c;
  --line: rgba(24, 35, 31, 0.18);
  --green: #1f3b36;
  --rust: #c35f2e;
  --sand: #d9c7a3;
  --white: #ffffff;
  --side: 286px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: var(--side) minmax(0, 1fr);
}

.side {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  background: var(--paper-soft);
}

.brand {
  text-decoration: none;
}

.brand strong {
  display: block;
  max-width: 10rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.94;
}

.brand span,
.kicker,
.side-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.nav {
  display: grid;
  align-content: center;
  gap: 0.25rem;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  border-bottom-color: var(--rust);
  color: var(--ink);
}

.side-note {
  max-width: 13rem;
  line-height: 1.5;
}

.main {
  min-width: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  min-height: 92svh;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: grid;
  align-content: end;
  gap: 1.5rem;
  padding: clamp(2rem, 6vw, 5.5rem);
}

.hero-media {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stamp {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  width: 9rem;
  height: 9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.1;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8.5vw, 7.6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.section {
  padding: clamp(3.6rem, 7vw, 6.5rem) clamp(1.2rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--paper-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(8rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-number {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.9;
}

.text {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.band img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.list {
  display: grid;
  border-top: 1px solid var(--line);
}

.list-row {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.list-row strong {
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.list-row p {
  color: var(--muted);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.note {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--paper);
}

.note b {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.note p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  color: var(--muted);
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-note {
  min-height: 1.5rem;
  color: var(--rust);
}

.footer {
  padding: 2rem clamp(1.2rem, 5vw, 5.5rem);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .shell {
    display: block;
  }

  .side {
    position: sticky;
    z-index: 20;
    height: auto;
    min-height: 70px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    padding: 0.85rem 1rem;
  }

  .brand strong {
    max-width: none;
    font-size: 1.55rem;
  }

  .side-note {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
  }

  .nav-toggle::before {
    content: "☰";
    font-size: 1.55rem;
    line-height: 1;
  }

  .nav-toggle[aria-expanded="true"]::before {
    content: "×";
  }

  .nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    padding: 0.7rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper-soft);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

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

  .hero,
  .band,
  .section-head,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 72svh;
    padding: 3.2rem 1rem;
  }

  .hero-media {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.75rem, 16vw, 4.2rem);
  }

  .section {
    padding: 3.2rem 1rem;
  }

  .list-row,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .note {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
