:root {
  --bg: #f4efe3;
  --ink: #201f1c;
  --body-text: #2e2d28;
  --muted: #55524a;
  --accent: #c5b295;
  --sticker-text: #fbf8f0;
  --hairline-strong: rgba(32, 31, 28, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
}

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

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/* ---------- layout ---------- */

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 56px) 40px;
}

/* ---------- hero ---------- */

.hero {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 52px;
}

.hero__text {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.hero__title .script {
  font-family: "Beth Ellen", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
}

.hero__title .script:last-of-type {
  color: var(--accent);
}

.hero__divider {
  height: 1px;
  background: var(--hairline-strong);
  margin: 22px 0;
}

.hero__text p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text);
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__text .serif-em {
  font-style: italic;
  font-family: "Instrument Serif", serif;
  font-size: 1.05em;
}

.hero__visual {
  flex: 1 1 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__frame-wrap {
  position: relative;
  width: 88%;
}

.hero__frame {
  overflow: hidden;
  padding: 10px;
  background: var(--bg);
}

.hero__frame img {
  width: 100%;
  height: auto;
}

.hero__sticker {
  position: absolute;
  bottom: -12px;
  right: 18px;
  z-index: 2;
  background: var(--accent);
  color: var(--sticker-text);
  padding: 7px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

/* ---------- practical info ---------- */

.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: clamp(32px, 6vw, 72px);
}

.info__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.info__value {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  display: block;
}

/* ---------- responsive ---------- */

@media (max-width: 700px) {
  .info {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero__frame-wrap {
    width: 100%;
  }
}

@media (min-width: 701px) {
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }
}
