/* =========================================================================
   BARO — 담백한 편집 스타일 / QUIET EDITORIAL

   Plain paper, hairline rules, generous space. Structure comes from ruling
   and whitespace, never from a background pattern, a card, or a shadow.
   Colour is an accent, not a field: one red reserved for the primary action,
   one muted green for small markers. Everything else is ink on paper.

   Deployed CSP is `default-src 'self'; style-src 'self'` — no inline styles,
   no external hosts. Fonts are self-hosted (see fonts.css).
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  color-scheme: light dark;

  --paper: #fcfbfa;
  --paper-2: #f3f2f0;
  --paper-3: #ffffff;

  --ink: #1b1815;
  --ink-2: #5c554b;
  --ink-3: #6e675f;

  /* Hairlines are neutral, not coloured. This is most of the calm. */
  --line: rgb(27 24 21 / 13%);
  --line-soft: rgb(27 24 21 / 7%);

  /* Accents. Red is spent on the primary action and focus only. */
  --action: #b8402c;
  --action-deep: #94301f;
  --accent: #35665a;

  --gutter: clamp(20px, 4vw, 40px);
  --shell: 1120px;

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Segoe UI", system-ui, sans-serif;
  --jp: "Noto Serif JP Subset", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #14130f;
    --paper-2: #1b1915;
    --paper-3: #201d19;

    --ink: #ece8e0;
    --ink-2: #aaa298;
    --ink-3: #7f776d;

    --line: rgb(236 232 224 / 15%);
    --line-soft: rgb(236 232 224 / 8%);

    --action: #e0705a;
    --action-deep: #f08b74;
    --accent: #6faa99;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  font-variant-numeric: tabular-nums;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.017em;
  line-height: 1.28;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- 2. Browser surfaces ------------------------------------------ */

::selection {
  background: rgb(184 64 44 / 16%);
}

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 3px;
  border-radius: 2px;
}

* {
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

/* ---------- 3. Shell ----------------------------------------------------- */

.shell {
  width: min(var(--shell), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.hero > *,
.hero-media > *,
.band-head > *,
.offer > *,
.closing > *,
.colophon-inner > *,
.doc > *,
.procedure > li > *,
.callout > *,
.steps > li,
.ledger > li,
.landscape-note > * {
  min-width: 0;
}

.measure {
  max-width: 62ch;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- 4. Masthead -------------------------------------------------- */

.masthead {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
}

.masthead-inner {
  display: flex;
  width: min(var(--shell), 100% - var(--gutter) * 2);
  min-height: 64px;
  margin-inline: auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.wordmark {
  display: inline-flex;
  margin-right: auto;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.wordmark-text b {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.wordmark-text span {
  color: var(--ink-3);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.nav a {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 140ms var(--ease);
}

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

.lang {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
}

.lang [aria-current="true"] {
  color: var(--ink);
  font-weight: 600;
}

.lang a:not([aria-current]) {
  color: var(--ink-3);
  text-decoration: none;
}

.lang a:not([aria-current]):hover {
  color: var(--ink);
}

/* ---------- 5. Bands ----------------------------------------------------- */

.band {
  padding-block: clamp(52px, 7vw, 92px);
  border-top: 1px solid var(--line);
}

.band-first {
  padding-block: clamp(40px, 6vw, 76px);
  border-top: 0;
}

.band-ink,
.band-sunk {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.band-title {
  max-width: 22ch;
  font-size: clamp(1.42rem, 2.9vw, 2.1rem);
}

.band-lead {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 0.98rem;
}

.band-head {
  display: grid;
  margin-bottom: clamp(30px, 4vw, 46px);
  gap: 10px clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}

.band-practice {
  padding-block: clamp(40px, 5.6vw, 64px);
}

.practice-measure,
.practice-copy {
  max-width: 38rem;
}

.practice-research {
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 0.88rem;
  line-height: 1.65;
}

.practice-research a {
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}

.practice-research a:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

/* ---------- 6. Hero ------------------------------------------------------ */

.hero {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  grid-template-areas:
    "intro"
    "media"
    "cta";
}

.hero-intro {
  grid-area: intro;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-area: media;
}

.hero-cta {
  grid-area: cta;
}

@media (min-width: 901px) {
  .hero {
    column-gap: clamp(36px, 5vw, 64px);
    row-gap: clamp(22px, 3vw, 32px);
    grid-template-areas:
      "intro media"
      "cta   media";
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    grid-template-rows: auto 1fr;
    align-items: start;
  }
}

.hero-title {
  max-width: 17ch;
  font-size: clamp(1.85rem, 5.4vw, 3rem);
  font-weight: 700;
  line-height: 1.26;
}

.hero-lead {
  max-width: 44ch;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ---------- 7. Controls -------------------------------------------------- */

.btn {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms var(--ease), border-color 150ms var(--ease);
}

.btn svg {
  flex: 0 0 auto;
}

.btn-shu {
  background: var(--action);
  color: #fff;
}

.btn-shu:hover {
  background: var(--action-deep);
}

.btn-quiet {
  border-color: var(--line);
  color: var(--ink);
}

.btn-quiet:hover {
  border-color: var(--ink-3);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 140ms var(--ease), text-decoration-color 140ms var(--ease);
}

.link:hover {
  color: var(--action);
  text-decoration-color: currentColor;
}

.link svg {
  flex: 0 0 auto;
  color: var(--ink-3);
}

.link:hover svg {
  color: currentColor;
}

/* ---------- 8. Facts ----------------------------------------------------- */

.facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  gap: 8px 22px;
  font-size: 0.88rem;
}

.facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}

.facts svg {
  flex: 0 0 auto;
  color: var(--ink-3);
}

/* ---------- 9. Plates ---------------------------------------------------- */

.plate,
.hero-plate {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper-3);
}

.plate img,
.hero-plate img {
  width: 100%;
  height: auto;
}

.plate figcaption,
.hero-plate-note {
  display: flex;
  padding: 13px 15px;
  border-top: 1px solid var(--line);
}

.plate figcaption {
  flex-direction: column;
  gap: 3px;
}

.plate figcaption b {
  font-size: 0.92rem;
  font-weight: 600;
}

.plate figcaption span {
  color: var(--ink-2);
  font-size: 0.84rem;
  line-height: 1.6;
}

.hero-plate-note {
  align-items: center;
  gap: 9px;
  color: var(--ink-2);
  font-size: 0.85rem;
}

.hero-plate-note svg {
  flex: 0 0 auto;
  color: var(--ink-3);
}

/* ---------- 10. Steps ---------------------------------------------------- */

.steps {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  display: grid;
  align-content: start;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.step-n {
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  font-size: 1.02rem;
  font-weight: 600;
}

.step p {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.72;
}

/* ---------- 11. Gallery -------------------------------------------------- */

/* ---------- 12. Offer ---------------------------------------------------- */

.offer {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: start;
}

.price {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper-3);
}

.price-head {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.85rem;
}

.price-body {
  padding: 18px;
}

.price-was {
  color: var(--ink-3);
  font-size: 0.88rem;
}

.price-now {
  display: flex;
  margin-top: 4px;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.price-now b {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.price-off {
  color: var(--ink-3);
  font-size: 0.84rem;
}

.price-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.85rem;
  line-height: 1.68;
}

.ledger {
  display: grid;
  margin-top: clamp(30px, 4vw, 44px);
  gap: clamp(20px, 3vw, 34px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ledger li {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.ledger b {
  font-size: 0.96rem;
  font-weight: 600;
}

.ledger p {
  color: var(--ink-2);
  font-size: 0.89rem;
  line-height: 1.7;
}

/* ---------- 13. Procedure ------------------------------------------------ */

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

.procedure > li {
  display: grid;
  padding: clamp(22px, 3vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  gap: 2px clamp(16px, 3vw, 32px);
  grid-template-columns: 2rem minmax(0, 1fr);
}

.procedure-n {
  color: var(--ink-3);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.85;
}

.procedure h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.procedure-body p {
  max-width: 60ch;
  margin-top: 7px;
  color: var(--ink-2);
  font-size: 0.94rem;
}

.procedure-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
  gap: 8px 22px;
}

.procedure-shots {
  display: grid;
  max-width: 36rem;
  margin-top: 18px;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.procedure-shot {
  min-width: 0;
  margin: 0;
}

.procedure-shot a {
  display: block;
  border-radius: 3px;
  cursor: zoom-in;
}

.procedure-shot img {
  width: 100%;
  height: auto;
}

.procedure-shot figcaption {
  margin-top: 5px;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.55;
}

.callout {
  display: grid;
  max-width: 62ch;
  margin-top: clamp(22px, 3vw, 30px);
  gap: 5px;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.callout b {
  color: var(--ink);
  font-weight: 600;
}

.callout .addr {
  color: var(--ink);
  overflow-wrap: anywhere;
}

/* ---------- 14. Closing -------------------------------------------------- */

.closing {
  display: grid;
  gap: clamp(18px, 3vw, 40px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.closing h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.closing p {
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* ---------- 15. Colophon ------------------------------------------------- */

.colophon {
  padding-block: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.colophon-inner {
  display: grid;
  gap: 20px clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.colophon-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.colophon-mark img {
  width: 26px;
  height: 26px;
  border-radius: 5px;
}

.colophon-mark b {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
}

.colophon-mark span {
  color: var(--ink-3);
  font-size: 0.76rem;
}

.colophon nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.colophon nav a {
  color: var(--ink-2);
  font-size: 0.84rem;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

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

/* ---------- 16. Documents ------------------------------------------------ */

.doc {
  display: grid;
  padding-block: clamp(32px, 4vw, 52px) clamp(52px, 7vw, 80px);
  gap: clamp(26px, 4vw, 52px);
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  align-items: start;
}

.doc-head {
  padding-bottom: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
  grid-column: 1 / -1;
}

.doc-head h1 {
  max-width: 22ch;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.doc-head .doc-date {
  margin-top: 11px;
  color: var(--ink-3);
  font-size: 0.85rem;
}

.doc-head .doc-intro {
  max-width: 62ch;
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 0.96rem;
}

.doc-toc {
  position: sticky;
  top: 84px;
}

.doc-toc h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.doc-toc ol {
  display: grid;
  margin-top: 6px;
}

.doc-toc a {
  display: block;
  padding: 7px 0;
  color: var(--ink-2);
  font-size: 0.86rem;
  line-height: 1.5;
  text-decoration: none;
}

.doc-toc a:hover {
  color: var(--ink);
}

.doc-body {
  max-width: 68ch;
}

.doc-body section + section {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}

.doc-body h2 {
  font-size: 1.12rem;
  font-weight: 600;
  scroll-margin-top: 88px;
}

.doc-body h3 {
  margin-top: 26px;
  font-size: 0.98rem;
  font-weight: 600;
}

.doc-body p {
  margin-top: 13px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.doc-body ul {
  display: grid;
  margin-top: 12px;
  gap: 6px;
}

.doc-body ul li {
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 0.95rem;
  text-indent: -18px;
}

.doc-body ul li::before {
  display: inline-block;
  width: 18px;
  color: var(--ink-3);
  content: "—";
  text-indent: 0;
}

.doc-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}

.doc-body a:hover {
  color: var(--action);
  text-decoration-color: currentColor;
}

.doc-body code,
.doc code {
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--paper-2);
  font-family: var(--sans);
  font-size: 0.9em;
}

/* The one paragraph that must not be skimmed — a rule, not a coloured box. */
.doc-body .flag {
  padding-left: 15px;
  border-left: 2px solid var(--action);
  color: var(--ink);
}

.doc-foot {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(30px, 4vw, 44px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 10px 22px;
  grid-column: 1 / -1;
}

/* ---------- 17. Responsive ----------------------------------------------- */

@media (max-width: 1000px) {
  .offer {
    grid-template-columns: 1fr;
  }

  .doc {
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .band-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .doc {
    grid-template-columns: 1fr;
  }

  .doc-toc {
    position: static;
  }

  .doc-toc ol {
    columns: 2;
    column-gap: 24px;
  }
}

@media (max-width: 720px) {
  .masthead-inner {
    display: grid;
    min-height: 0;
    padding-block: 9px;
    gap: 7px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wordmark {
    margin-right: 0;
    grid-area: 1 / 1;
  }

  .lang {
    grid-area: 1 / 2;
    align-self: center;
  }

  .nav {
    grid-area: 2 / 1 / 3 / 3;
    padding-top: 7px;
    border-top: 1px solid var(--line-soft);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .closing,
  .colophon-inner {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .actions {
    display: grid;
  }

  .doc-toc ol {
    columns: 1;
  }
}

/* ---------- 18. Motion & print ------------------------------------------- */

@media (prefers-color-scheme: dark) {
  .plate img,
  .hero-plate img {
    filter: brightness(0.84) contrast(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .masthead,
  .doc-toc,
  .skip-link {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .doc {
    display: block;
  }

  .doc-body {
    max-width: none;
  }

  .doc-body a::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    word-break: break-all;
  }
}

/* Two portrait captures share one narrow V composition. The annotation
   follows the front screen's real bottom-right Accessibility button. */
.portrait-pair {
  position: relative;
  isolation: isolate;
  width: min(100%, 560px);
  margin: 0 auto;
}

.portrait-stage {
  position: relative;
  aspect-ratio: 600 / 590;
}

.portrait-screen {
  position: absolute;
  width: 40.6667%;
  border-radius: 9px;
  outline: 1px solid var(--line);
  background: var(--paper-3);
  transform-origin: 50% 100%;
}

.portrait-screen img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.portrait-screen-back {
  top: 2.7119%;
  left: 10.3333%;
  transform: rotate(-4deg);
}

.portrait-screen-front {
  z-index: 1;
  top: 6.1017%;
  left: 46.6667%;
  transform: rotate(4deg);
}

.shortcut-ring {
  position: absolute;
  top: 97%;
  left: 93.5%;
  width: 11.4%;
  aspect-ratio: 1;
  border: 2px solid var(--action);
  border-radius: 6px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.portrait-arrow {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  color: var(--action);
  overflow: visible;
  pointer-events: none;
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 64%;
  margin: 6px 0 0 8%;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.45;
}

.portrait-caption strong {
  color: var(--action);
  font-weight: 700;
}

.portrait-caption span {
  font-weight: 500;
}

.landscape-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.landscape-note h3 {
  font-size: 1.02rem;
  font-weight: 600;
}

.landscape-note p {
  max-width: 42ch;
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.7;
}

.landscape-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landscape-shots img {
  outline: 1px solid var(--line);
  width: 100%;
  height: auto;
  border-radius: inherit;
}

@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (max-width: 720px) {
  .landscape-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  .portrait-screen img,
  .landscape-shots img {
    filter: brightness(0.84) contrast(1.03);
  }
}
