:root {
  --paper: #f3eee6;
  --ink: #1c1b19;
  --muted: #5e594f;
  --rule: #cfc6b8;
  --accent: #2a2a28;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 8vw;
  border-bottom: 1px solid var(--rule);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.site-brand img {
  height: 72px;
  width: auto;
  display: block;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-brand-text span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 4.5rem 8vw 3.5rem;
  max-width: 52rem;
  border-top: none;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 36rem;
}

section {
  padding: 2.5rem 8vw 3.5rem;
  border-top: 1px solid var(--rule);
  max-width: 52rem;
}

section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
}

section p,
section li {
  color: var(--muted);
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1.2rem;
  background: var(--ink);
  overflow: hidden;
}

.video iframe,
.video-play,
.video-play img,
.video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video video {
  object-fit: cover;
  background: #111;
}

.video-play {
  padding: 0;
  background: #111;
  cursor: pointer;
}

.video-play img {
  object-fit: cover;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.2rem;
  height: 3rem;
  margin: -1.5rem 0 0 -2.1rem;
  background: #c4302b;
  border-radius: 0.7rem;
}

.video-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
}

.video-link {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
}

.performance {
  margin-top: 2rem;
}

.performance h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.performance-meta {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form {
  margin-top: 1.6rem;
  max-width: 28rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.field {
  margin: 0 0 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.field .optional {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form button {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 0.6rem 1.2rem;
  font: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent);
}

.site-footer {
  padding: 1.5rem 8vw 2.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
