:root {
  --ink: rgb(30, 30, 30);
  --muted: #686868;
  --line: rgb(220, 220, 220);
  --green: #1e4f1c;
  --paper: #ffffff;
  --soft: rgb(247, 247, 247);
  --footer: #a28e7d;
  --sand: #a28e7d;
  --accent: #a47f7c;
  --latin: "Rubik", ui-sans-serif, system-ui, sans-serif;
  --body: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --side: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --heading: var(--side);
  --jp: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--jp);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(30, 79, 28, 0.16);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: transparent;
}

body.menu-open .site-header {
  z-index: 70;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 80px));
  min-height: 79px;
  margin: 0 auto;
  padding: 22px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 114px;
  height: 144px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 4px;
  color: #050505;
  font-family: var(--latin);
  line-height: 1.15;
  white-space: nowrap;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-name-en {
  display: inline-block;
  margin-left: 0.22em;
  letter-spacing: 0.04em;
  transform: translateY(0.03em);
}

h1,
h2,
h3,
.brand-name,
.section-label,
.global-nav a,
.mobile-menu a,
.footer-nav a,
.privacy-link,
.works-profile-label,
.company-detail dt,
.profile-list dt,
.profile-notes dt {
  font-family: var(--heading);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global-nav a,
.footer-nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  transition: opacity 0.25s ease;
}

.global-nav a:hover,
.footer-nav a:hover,
.privacy-link:hover {
  opacity: 0.62;
}

.menu-toggle {
  display: flex;
  position: fixed;
  top: 18px;
  right: 14px;
  z-index: 60;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  padding: 10px 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

body.menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.96);
}

.menu-toggle span {
  position: relative;
  display: block;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #000000;
  backface-visibility: hidden;
  transform-origin: center;
  will-change: transform;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  width: 24px;
}

.menu-toggle span:nth-child(2) {
  width: 24px;
}

.menu-toggle span:nth-child(3) {
  display: none;
}

.menu-toggle:hover {
  background: rgba(164, 127, 124, 0.12);
  transform: translateY(-1px);
}

body.menu-open .menu-toggle span:nth-child(1) {
  width: 24px;
  transform: translate3d(0, 5px, 0) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  width: 24px;
  opacity: 1;
  transform: translate3d(0, -5px, 0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 24px;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.side-copy {
  position: fixed;
  z-index: 12;
  margin: 0;
  color: #000000;
  font-family: var(--side);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.9;
  opacity: var(--side-copy-opacity, 0.84);
  transition: opacity 0.55s ease, transform 0.55s ease;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.side-copy-left {
  display: none;
  top: 130px;
}

.side-copy-right {
  display: none;
  top: 130px;
}

.side-copy-mobile {
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}

@media (min-width: 961px) {
  .menu-toggle {
    display: none;
  }

  .brand {
    position: relative;
    z-index: 20;
    transform-origin: top left;
    transform: translate(-70px, -24px) scale(1.1);
  }

  .brand-mark {
    width: 128px;
    height: 162px;
  }

  .global-nav {
    align-self: flex-start;
    margin-top: 48px;
    margin-bottom: 0;
  }

  .hero-image {
    width: calc(100% - 18px);
    margin: 0 6px;
  }

  .side-copy-mobile {
    top: 130px;
    right: 6px;
    transform: none;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  padding: 130px 40px 20px;
}

.hero-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #dddddd;
}

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

.hero-caption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--latin);
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
  pointer-events: none;
}

.hero-title {
  position: absolute;
  left: 48px;
  bottom: 35px;
  width: min(100% - 48px, 1000px);
  color: var(--paper);
  text-align: left;
}

.hero-title h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--latin);
  font-size: 82px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.hero-title p {
  margin: 16px 0 0;
  color: var(--paper);
  font-family: var(--latin);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.section {
  padding: 130px 80px 170px;
  background: var(--paper);
}

.section-inner {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 80px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.section-label {
  position: relative;
  width: 45px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  writing-mode: vertical-rl;
}

.section-label::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -10px;
  width: 1px;
  height: 28px;
  background: var(--accent);
  opacity: 0.85;
}

.section-body {
  min-width: 0;
  padding-top: 40px;
}

.section-body h2,
.contact-panel h2 {
  margin: 0 0 40px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.heading-dot {
  color: #a28e7d;
  opacity: 0.8;
}

.section-body p {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.9;
}

.message-body p:last-of-type {
  margin-bottom: 50px;
}

.message-photo {
  width: 100%;
  border-radius: 2px;
}

.wide-photo {
  width: 100%;
  margin: 0;
  padding-right: 64px;
}

.wide-photo img {
  width: 100%;
  height: 416px;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}

.work-item {
  width: 100%;
  margin-bottom: 70px;
}

.work-item:last-of-type {
  margin-bottom: 38px;
}

section#works {
  padding-bottom: 84px;
}

.work-number {
  margin: 0;
  color: var(--line);
  font-family: var(--latin);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.work-item h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.work-item p:not(.work-number) {
  margin-bottom: 26px;
  font-size: 14px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
}

.image-row img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
}

.image-focus-top {
  object-position: center 28%;
}

.image-book-cover {
  object-position: center 48%;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 12px 16px 12px 18px;
  border-radius: 128px;
  color: var(--accent);
  transition: opacity 0.25s ease;
}

.text-link span {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.text-link i {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  transform: translateX(8px);
  transition: transform 0.25s ease;
}

.text-link i::after,
.small-link i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.text-link:hover {
  opacity: 0.72;
}

.text-link:hover i {
  transform: translateX(14px);
}

.section-info {
  padding-bottom: 300px;
  background: var(--paper);
}

.empty-news {
  margin: 20px 0;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.small-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: opacity 0.25s ease;
}

.small-link i {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  transform: translateX(8px);
  transition: transform 0.25s ease;
}

.small-link:hover {
  opacity: 0.72;
}

.small-link:hover i {
  transform: translateX(14px);
}

.wood-photo {
  width: 100%;
  margin: -190px 0 0;
  padding: 0 40px;
}

.wood-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 2px;
}

.company-body {
  max-width: 620px;
}

.company-detail dl {
  display: grid;
  gap: 25px;
  margin: 0;
}

.company-detail dl div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.company-detail dt,
.company-detail dd {
  margin: 0;
  padding-bottom: 6px;
  color: var(--ink);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.company-detail dt {
  position: relative;
  font-size: 12px;
  font-weight: 700;
}

.company-detail dt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
}

.company-detail dd {
  font-size: 14px;
  font-weight: 400;
}

.section-media {
  padding-top: 92px;
  padding-bottom: 140px;
  background: var(--soft);
}

.media-body {
  max-width: 880px;
}

.media-body p {
  width: min(840px, 100%);
  margin-bottom: 36px;
}

.media-feature {
  width: min(840px, 100%);
  margin: 0;
}

.media-video {
  position: relative;
  display: block;
  width: min(840px, 100%);
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(87, 81, 76, 0.12);
  border-radius: 10px;
  appearance: none;
  background: rgba(247, 247, 247, 0.72);
  cursor: pointer;
  overflow: hidden;
}

.media-video img,
.media-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 6px;
}

.media-video::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease;
}

.media-video:hover::after {
  background: rgba(0, 0, 0, 0.02);
}

.media-video.is-playing {
  cursor: default;
}

.media-video.is-playing::after {
  content: none;
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(38, 34, 30, 0.18);
  transform: translate(-50%, -50%);
}

.media-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--accent);
  transform: translate(-50%, -50%);
}

.media-source {
  width: min(840px, 100%);
  margin-top: 16px;
  color: rgba(38, 34, 30, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: right;
}

.media-source a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.25s ease;
}

.media-source a:hover {
  opacity: 0.68;
}

.contact-wrap {
  padding: 40px;
  background: var(--paper);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 130px 40px 150px;
  border-radius: 12px;
  background: var(--soft);
}

.contact-panel h2 {
  margin-bottom: 12px;
  text-align: center;
}

.contact-panel > p {
  width: min(460px, 100%);
  margin: 0 0 44px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
}

.contact-form {
  display: grid;
  width: min(600px, 100%);
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
}

.contact-form label > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.contact-form em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 20px;
  padding: 0 6px;
  border-radius: 2px;
  background: var(--green);
  color: var(--paper);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:not([type="checkbox"]) {
  height: 50px;
  padding: 10px;
}

.contact-form input[type="email"],
.contact-form input[type="tel"] {
  font-family: var(--latin);
  padding: 10px 16px;
}

.contact-form textarea {
  min-height: 302px;
  padding: 10px;
  resize: vertical;
  line-height: 1.8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 79, 28, 0.36);
  box-shadow: 0 0 0 3px rgba(30, 79, 28, 0.1);
}

.privacy-check {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  margin-bottom: 40px;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--green);
}

.privacy-check span {
  display: inline-flex !important;
  flex-wrap: wrap;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.privacy-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.78;
  text-align: center;
}

.contact-form button {
  width: 220px;
  height: 60px;
  margin: 0 auto;
  border: 0;
  border-radius: 40px;
  background: var(--green);
  color: var(--paper);
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-form button:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-message {
  min-height: 1.6em;
  margin: 18px 0 0;
  color: var(--green);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 304px;
  padding: 88px 30px 26px;
  background: var(--footer);
  color: var(--paper);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  width: min(558px, 100%);
  margin-bottom: 76px;
}

.footer-nav a {
  color: var(--paper);
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 54px;
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text {
  display: grid;
  gap: 2px;
  color: var(--paper);
  line-height: 1.3;
}

.footer-brand-text strong {
  color: var(--paper);
  font-family: var(--body);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.footer-brand-text .brand-name {
  font-size: 20px;
}

.footer-brand-text .brand-name-ja {
  font-size: 0.78em;
}

.privacy-link {
  color: var(--paper);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.site-footer small {
  position: absolute;
  right: 22px;
  bottom: 17px;
  color: rgb(150, 150, 150);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.page-header {
  position: relative;
  background: var(--paper);
}

.privacy-page {
  padding: 84px 30px 130px;
  background: var(--paper);
}

.privacy-hero,
.privacy-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.privacy-hero {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 80px;
  padding: 70px 0 86px;
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.privacy-hero p:not(.section-label),
.privacy-content p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.9;
}

.privacy-content {
  padding: 64px 0 0 125px;
}

.privacy-content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.privacy-content p {
  margin-bottom: 42px;
}

.privacy-content .privacy-updated {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.works-page {
  position: relative;
  z-index: 2;
  padding-top: 0;
  background: var(--paper);
}

.works-header {
  position: absolute;
  z-index: 20;
}

.works-hero {
  width: calc(100% - 98px);
  margin: 0 52px 0 46px;
}

.works-hero img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.works-hero h1 {
  position: relative;
  display: block;
  width: 45px;
  margin: 64px 0 0 max(0px, calc((100% - 900px) / 2));
  padding: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  writing-mode: vertical-rl;
}

.works-hero h1::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -10px;
  width: 1px;
  height: 28px;
  background: var(--accent);
  opacity: 0.85;
}

.works-detail {
  width: min(960px, calc(100% - 96px));
  margin: 0 auto;
  padding: 76px 0 120px;
}

.works-service {
  margin-bottom: 136px;
  text-align: center;
}

.works-service:last-child {
  margin-bottom: 0;
}

.works-service .work-number {
  margin-bottom: 6px;
  font-size: 30px;
}

.works-service h2 {
  margin: 0 0 40px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.works-service p {
  width: min(760px, 100%);
  margin: 0 auto 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.1;
  text-align: left;
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 54px;
}

.works-service-actions {
  width: 100%;
  justify-content: flex-end;
  margin: 28px auto 0;
}

.works-service-actions .profile-research-note {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.works-gallery img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.works-profile {
  width: min(960px, calc(100% - 96px));
  margin: 0 auto;
  padding: 80px 0 90px;
}

.works-profile-label {
  position: relative;
  width: 48px;
  margin: 0 0 0 8px;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  writing-mode: vertical-rl;
}

.works-profile-label::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -10px;
  width: 1px;
  height: 28px;
  background: var(--accent);
  opacity: 0.85;
}

.works-profile-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 92px;
  align-items: start;
  margin-top: -58px;
  padding-left: 145px;
}

.works-profile-copy h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.works-profile-copy p,
.profile-list dd,
.profile-notes dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
}

.works-profile-copy p {
  margin: 0 0 44px;
}

.works-profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 72% center;
}

.profile-list,
.profile-notes {
  display: grid;
  gap: 22px;
  margin: 0;
}

.profile-list div,
.profile-notes div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.profile-list dt,
.profile-notes dt {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}

.profile-list dt::after,
.profile-notes dt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--accent);
}

.profile-list dd,
.profile-notes dd {
  margin: 0;
}

.profile-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: flex-end;
  margin: 28px 0 0;
}

.profile-research-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: right;
  white-space: nowrap;
}

.profile-research-note i {
  position: relative;
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.profile-research-note i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: rotate(45deg);
}

.profile-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.profile-map-link:hover {
  background: var(--green);
  color: var(--line);
}

.profile-notes {
  grid-column: 1 / 2;
  margin-top: -42px;
  padding-top: 0;
}

.profile-notes div {
  min-height: 46px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .header-inner {
    width: calc(100% - 56px);
    min-height: 70px;
    padding: 18px 0;
  }

  .brand {
    position: absolute;
    top: 18px;
    left: 28px;
    transform: none;
    z-index: 25;
    gap: 16px;
    max-width: calc(100% - 70px);
  }

  .brand-mark {
    width: clamp(76px, 20vw, 84px);
    height: clamp(95px, 25vw, 105px);
  }

  .brand-text {
    white-space: normal;
  }

  .brand-name {
    font-size: 22px;
  }

  .global-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .side-copy {
    top: 76px;
    right: 24px;
    left: auto;
    width: 22px;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.7;
    text-align: start;
    writing-mode: vertical-rl;
  }

  .side-copy-left,
  .side-copy-right {
    display: none;
  }

  .side-copy-mobile {
    transform: none;
  }

  .hero {
    min-height: 600px;
    padding: 96px 54px 16px 14px;
  }

  .hero-caption {
    display: none;
  }

  .hero-title {
    left: 24px;
    bottom: 32px;
    width: calc(100% - 48px);
    text-align: left;
  }

  .hero-title h1 {
    font-size: 64px;
  }

  .hero-title p {
    font-size: 22px;
  }

  .section {
    padding: 92px 30px 110px;
  }

  section#works {
    padding-bottom: 56px;
  }

  .section-inner {
    display: block;
  }

  .privacy-hero {
    display: block;
    padding: 42px 0 60px;
  }

  .privacy-content {
    padding-left: 0;
  }

  .section-label {
    width: auto;
    margin-bottom: 28px;
    writing-mode: initial;
  }

  .section-label::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 0;
    width: 34px;
    height: 1px;
  }

  .section-body {
    padding-top: 0;
  }

  .section-body h2,
  .contact-panel h2 {
    font-size: 28px;
  }

  .wide-photo {
    padding-right: 58px;
  }

  .wide-photo img {
    height: 320px;
  }

  .section-info {
    padding-bottom: 210px;
  }

  .section-media {
    padding-top: 72px;
    padding-bottom: 104px;
  }

  .media-body p {
    margin-bottom: 32px;
  }

  .media-video {
    padding: 8px;
  }

  .media-video::after {
    inset: 8px;
  }

  .wood-photo {
    margin-top: -140px;
    padding: 0 58px 0 24px;
  }

  .wood-photo img {
    height: 320px;
  }

  .contact-wrap {
    padding: 24px;
  }

  .contact-panel {
    padding: 90px 28px 100px;
  }

  .works-page {
    padding-top: 112px;
  }

  .works-hero {
    width: calc(100% - 42px);
    margin-left: 0;
  }

  .works-hero img {
    width: 100%;
    height: 360px;
  }

  .works-hero h1 {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 24px 0 0 24px;
    padding-top: 20px;
    color: var(--ink);
    font-size: 15px;
    writing-mode: initial;
  }

  .works-hero h1::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 0;
    width: 34px;
    height: 1px;
  }

  .works-detail {
    width: calc(100% - 48px);
    padding: 96px 0 88px;
  }

  .works-service {
    margin-bottom: 86px;
    text-align: left;
  }

  .works-service .work-number {
    font-size: 26px;
  }

  .works-service h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .works-service p {
    font-size: 14px;
    line-height: 2;
  }

  .works-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }

  .works-profile {
    width: calc(100% - 48px);
    padding: 42px 0 56px;
  }

  .works-profile-label {
    width: auto;
    margin: 0 0 34px;
    padding: 0 0 8px;
    border: 0;
    font-size: 14px;
    writing-mode: initial;
  }

  .works-profile-label::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 0;
    width: 34px;
    height: 1px;
  }

  .works-profile-body {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: 0;
    padding-left: 0;
  }

  .works-profile-photo {
    order: 1;
    width: min(360px, 100%);
  }

  .works-profile-copy {
    order: 2;
  }

  .profile-actions {
    order: 4;
  }

  .profile-notes {
    order: 3;
    margin-top: 0;
  }

  .works-profile-copy h2 {
    font-size: 22px;
  }

  .profile-list div,
  .profile-notes div {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  .brand {
    gap: 12px;
  }

  .brand-text {
    line-height: 1.25;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-title h1 {
    font-size: 54px;
  }

  .hero-title p {
    font-size: 18px;
  }

  .section {
    padding: 78px 24px 92px;
  }

  section#works {
    padding-bottom: 46px;
  }

  .section-body h2,
  .contact-panel h2 {
    margin-bottom: 26px;
    font-size: 24px;
  }

  .section-body p {
    font-size: 14px;
  }

  .section-media {
    padding-top: 60px;
    padding-bottom: 88px;
  }

  .media-body p {
    margin-bottom: 26px;
  }

  .media-video {
    padding: 6px;
    border-radius: 8px;
  }

  .media-video::after {
    inset: 6px;
    border-radius: 5px;
  }

  .media-video iframe {
    border-radius: 5px;
  }

  .media-play {
    width: 56px;
    height: 56px;
  }

  .media-play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .image-row img {
    height: 180px;
  }

  .wide-photo img,
  .wood-photo img {
    height: 250px;
  }

  .company-detail dl div {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-wrap {
    padding: 16px;
  }

  .contact-panel {
    padding: 72px 18px 86px;
  }

  .contact-form button {
    width: 190px;
  }

  .footer-nav {
    display: grid;
    gap: 14px;
    margin-bottom: 48px;
    text-align: center;
  }

  .site-footer small {
    position: static;
    margin-top: 24px;
  }

  .works-page {
    padding-top: 94px;
  }

  .works-hero {
    width: calc(100% - 40px);
  }

  .works-hero img {
    height: 260px;
  }

  .works-detail {
    width: calc(100% - 42px);
    padding-top: 84px;
  }

  .works-gallery {
    gap: 3px;
  }

  .works-service h2 {
    font-size: 21px;
  }

  .works-profile {
    width: calc(100% - 42px);
  }

  .profile-actions {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 10px 0 0;
  }

  .profile-map-link {
    padding: 0 20px;
  }
}

.forgotten-site {
  --forgotten-blue: #1A2F5C;
  --forgotten-gold: #C8A96B;
  --forgotten-gold-light: #D8BC83;
  --forgotten-text: #E8E0D0;
  --forgotten-muted: rgba(232, 224, 208, 0.72);
  --forgotten-line: rgba(216, 188, 131, 0.28);
  --forgotten-serif: "Anthanista", "Cormorant Garamond", "Shippori Mincho B1", "Yu Mincho", serif;
  min-height: 100%;
  background:
    linear-gradient(rgba(26, 47, 92, 0.58), rgba(26, 47, 92, 0.9)),
    url("janko-ferlic-sfL_QOnmy00-unsplash.jpg") center top / cover fixed no-repeat,
    var(--forgotten-blue);
  color: var(--forgotten-text);
  font-family: "Shippori Mincho B1", "Yu Mincho", serif;
}

.forgotten-site ::selection {
  background: rgba(216, 188, 131, 0.22);
}

.forgotten-hero {
  position: relative;
  z-index: 10;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 132px 24px 112px;
  overflow: visible;
}

.forgotten-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(216, 188, 131, 0.1), transparent 48%);
  pointer-events: none;
}

.forgotten-hero-logo {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100vw - 112px));
  filter:
    brightness(1.18)
    saturate(1.08)
    drop-shadow(0 26px 60px rgba(3, 9, 24, 0.34));
}

.forgotten-hero-logo img {
  width: 100%;
  height: auto;
}

.forgotten-thread {
  position: absolute;
  top: calc(58vh + 5px);
  left: var(--forgotten-thread-left, calc(100vw - clamp(16px, 7.5vw, 112px) - 200px));
  right: auto;
  z-index: 6;
  width: 260px;
  height: calc(100% - 40vh);
  opacity: 0.92;
  filter: drop-shadow(0 0 3px rgba(200, 169, 107, 0.22));
  pointer-events: none;
}

.forgotten-thread svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.forgotten-thread-path {
  fill: none;
  stroke: var(--forgotten-gold);
  stroke-linecap: round;
  stroke-width: 1.4;
  opacity: 0.78;
  filter: drop-shadow(0 0 7px rgba(216, 188, 131, 0.2));
}

.forgotten-thread-path + .forgotten-thread-path {
  stroke-width: 0.55;
  opacity: 0.26;
}

.forgotten-products {
  position: relative;
  z-index: 12;
  margin-top: clamp(-48px, -3.5vw, -24px);
  padding: 0 clamp(24px, 7vw, 96px) clamp(110px, 13vw, 170px);
}

.forgotten-products::before {
  content: none;
}

.forgotten-products::after {
  content: none;
}

.forgotten-products-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.forgotten-arch {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto clamp(8px, 1.4vw, 16px);
  opacity: 0.92;
  filter:
    brightness(1.12)
    saturate(1.08)
    drop-shadow(0 14px 28px rgba(3, 9, 24, 0.18));
}

.forgotten-product-meta {
  margin: 0;
  color: var(--forgotten-gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.forgotten-product-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.forgotten-product-list::before {
  content: none;
}

.forgotten-product-list::after {
  content: none;
}

.forgotten-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  padding: 0;
  border: 1px solid rgba(216, 188, 131, 0.48);
  background: rgba(10, 22, 45, 0.58);
  backdrop-filter: blur(10px);
}

.forgotten-product-card::before,
.forgotten-product-card::after,
.forgotten-product-card figure::before,
.forgotten-product-card figure::after,
.forgotten-product-card > div::before,
.forgotten-product-card > div::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.forgotten-product-card::before {
  inset: 10px;
  border: 1px solid rgba(216, 188, 131, 0.26);
}

.forgotten-product-card::after {
  top: -1px;
  left: -1px;
  width: 52%;
  height: 1px;
  background: var(--forgotten-gold);
}

.forgotten-product-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.forgotten-product-card figure::before {
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  border-top: 1px solid var(--forgotten-gold);
  border-left: 1px solid var(--forgotten-gold);
}

.forgotten-product-card figure::after {
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-top: 1px solid var(--forgotten-gold);
  border-right: 1px solid var(--forgotten-gold);
}

.forgotten-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.96);
}

.forgotten-product-card > div {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
}

.forgotten-product-card > div::before {
  bottom: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  border-bottom: 1px solid rgba(216, 188, 131, 0.86);
  border-left: 1px solid rgba(216, 188, 131, 0.86);
}

.forgotten-product-card > div::after {
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(216, 188, 131, 0.86);
  border-bottom: 1px solid rgba(216, 188, 131, 0.86);
}

.forgotten-product-card h3 {
  margin: 34px 0 18px;
  color: var(--forgotten-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.forgotten-product-card p:not(.forgotten-product-meta) {
  margin: 0 0 38px;
  color: var(--forgotten-muted);
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.forgotten-product-card span {
  color: rgba(216, 188, 131, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.forgotten-editor-link {
  display: inline-flex;
  margin-top: 34px;
  color: rgba(216, 188, 131, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.forgotten-editor-link:hover {
  opacity: 0.68;
}

.forgotten-section {
  position: relative;
  z-index: 1;
  padding: clamp(100px, 13vw, 170px) clamp(24px, 7vw, 96px);
  background: var(--forgotten-blue);
}

.forgotten-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(216, 188, 131, 0.04) 1px, transparent 1px);
  background-size: 100% 120px;
  opacity: 0.5;
  pointer-events: none;
}

.forgotten-section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.forgotten-section-label {
  position: relative;
  margin: 0;
  color: var(--forgotten-gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.forgotten-section-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 18px;
  background: var(--forgotten-gold);
}

.forgotten-copy {
  width: min(760px, 100%);
}

.forgotten-copy h2,
.forgotten-contact h2 {
  margin: 0 0 30px;
  color: var(--forgotten-text);
  font-family: var(--forgotten-serif);
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
}

.forgotten-copy p,
.forgotten-contact p,
.forgotten-grid p,
.forgotten-approach-list p {
  margin: 0 0 22px;
  color: var(--forgotten-muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 2.05;
}

.forgotten-band {
  background: #14284f;
}

.forgotten-grid,
.forgotten-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--forgotten-line);
  background: var(--forgotten-line);
}

.forgotten-grid article,
.forgotten-project-grid article {
  min-height: 250px;
  padding: 32px 28px;
  background: rgba(26, 47, 92, 0.94);
}

.forgotten-grid span,
.forgotten-project-grid p {
  display: block;
  margin: 0 0 34px;
  color: var(--forgotten-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  line-height: 1;
}

.forgotten-grid h3,
.forgotten-approach-list h3,
.forgotten-project-grid h3 {
  margin: 0 0 16px;
  color: var(--forgotten-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.forgotten-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.9;
}

.forgotten-approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 64px;
  width: min(800px, 100%);
}

.forgotten-approach-list div {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--forgotten-line);
}

.forgotten-projects {
  background:
    linear-gradient(rgba(26, 47, 92, 0.92), rgba(26, 47, 92, 0.96)),
    url("library2.webp") center / cover no-repeat;
}

.forgotten-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.forgotten-project-grid article {
  min-height: 210px;
}

.forgotten-project-grid span {
  color: var(--forgotten-muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.forgotten-contact {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 120px 24px;
  background: #102448;
  text-align: center;
}

.forgotten-contact > div {
  width: min(720px, 100%);
}

.forgotten-contact .forgotten-section-label::after {
  margin-right: auto;
  margin-left: auto;
}

.forgotten-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 20px;
  padding: 0 34px;
  border: 1px solid var(--forgotten-gold);
  color: var(--forgotten-gold-light);
  font-family: "Shippori Mincho B1", serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: background 0.25s ease, color 0.25s ease;
}

.forgotten-button:hover {
  background: var(--forgotten-gold);
  color: #102448;
}

.forgotten-footer {
  display: block;
  padding: 38px clamp(24px, 6vw, 72px);
  border-top: 1px solid var(--forgotten-line);
  background: rgba(10, 22, 45, 0.86);
  color: var(--forgotten-muted);
  font-family: "Cormorant Garamond", serif;
}

.forgotten-footer-links {
  display: grid;
  gap: 12px;
}

.forgotten-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 34px);
}

.forgotten-footer-nav a {
  color: var(--forgotten-gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.forgotten-footer-nav a:hover,
.forgotten-photo-credit a:hover {
  opacity: 0.7;
}

.forgotten-footer-nav a:hover {
  text-decoration-color: currentColor;
}

.forgotten-photo-credit {
  margin: 0;
  color: rgba(232, 224, 208, 0.48);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  line-height: 1.4;
}

.forgotten-photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.forgotten-footer small {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .forgotten-thread-path {
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 900px) {
  .forgotten-section-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .forgotten-grid,
  .forgotten-project-grid,
  .forgotten-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .forgotten-approach-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .forgotten-hero {
    min-height: 100svh;
    padding: 116px 20px 96px;
  }

  .forgotten-hero-logo {
    width: min(940px, calc(100vw - 46px));
  }

  .forgotten-thread {
    left: var(--forgotten-thread-left, calc(100vw - 134px));
    width: 210px;
    height: calc(100% - 42vh);
  }

  .forgotten-section {
    padding: 88px 22px;
  }

  .forgotten-grid,
  .forgotten-project-grid,
  .forgotten-product-list {
    grid-template-columns: 1fr;
  }

  .forgotten-grid article,
  .forgotten-project-grid article,
  .forgotten-product-card {
    min-height: 0;
  }

  .forgotten-product-card > div {
    padding: 28px 24px;
  }

  .forgotten-footer {
    text-align: left;
  }

  .forgotten-footer-nav {
    justify-content: flex-start;
  }
}
